diff --git a/src/testRunner/unittests/helpers/virtualFileSystemWithWatch.ts b/src/testRunner/unittests/helpers/virtualFileSystemWithWatch.ts index 0ab3df9d2ab4e..befe370830e02 100644 --- a/src/testRunner/unittests/helpers/virtualFileSystemWithWatch.ts +++ b/src/testRunner/unittests/helpers/virtualFileSystemWithWatch.ts @@ -1,5 +1,6 @@ import * as Harness from "../../_namespaces/Harness"; import { + arrayFrom, clear, clone, combinePaths, @@ -1123,20 +1124,23 @@ function diffMap( let captionAdded = false; let baselineChanged = false; let hasChange = false; - map?.forEach((values, key) => { - const existing = old?.get(key); - let addedKey = false; - for (const value of values) { - const hasExisting = contains(existing, value); - if (deleted && hasExisting) continue; - if (!hasExisting) hasChange = true; - if (!addedKey) { - addBaseline(`${key}:${deleted || existing ? "" : " *new*"}`); - addedKey = true; + if (map) { + for (const key of arrayFrom(map.keys()).sort(compareStringsCaseSensitive)) { + const existing = old?.get(key); + let addedKey = false; + const values = map.get(key)!; + for (const value of values) { + const hasExisting = contains(existing, value); + if (deleted && hasExisting) continue; + if (!hasExisting) hasChange = true; + if (!addedKey) { + addBaseline(`${key}:${deleted || existing ? "" : " *new*"}`); + addedKey = true; + } + addBaseline(` ${JSON.stringify(value)}${deleted || hasExisting || !existing ? "" : " *new*"}`); } - addBaseline(` ${JSON.stringify(value)}${deleted || hasExisting || !existing ? "" : " *new*"}`); } - }); + } if (baselineChanged) baseline.push(""); return hasChange; diff --git a/tests/baselines/reference/tsbuildWatch/configFileErrors/reports-syntax-errors-in-config-file.js b/tests/baselines/reference/tsbuildWatch/configFileErrors/reports-syntax-errors-in-config-file.js index bcdd7567a9dee..2033ad375a394 100644 --- a/tests/baselines/reference/tsbuildWatch/configFileErrors/reports-syntax-errors-in-config-file.js +++ b/tests/baselines/reference/tsbuildWatch/configFileErrors/reports-syntax-errors-in-config-file.js @@ -58,12 +58,12 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /user/username/projects/myproject/a.ts: *new* {} /user/username/projects/myproject/b.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tsbuildWatch/demo/updates-with-bad-reference.js b/tests/baselines/reference/tsbuildWatch/demo/updates-with-bad-reference.js index d1d200e5e543f..cace102678161 100644 --- a/tests/baselines/reference/tsbuildWatch/demo/updates-with-bad-reference.js +++ b/tests/baselines/reference/tsbuildWatch/demo/updates-with-bad-reference.js @@ -251,32 +251,32 @@ PolledWatches:: {"pollingInterval":2000} FsWatches:: -/user/username/projects/demo/core/tsconfig.json: *new* +/user/username/projects/demo/animals/animal.ts: *new* {} -/user/username/projects/demo/tsconfig-base.json: *new* +/user/username/projects/demo/animals/dog.ts: *new* {} -/user/username/projects/demo/core/utilities.ts: *new* +/user/username/projects/demo/animals/index.ts: *new* {} /user/username/projects/demo/animals/tsconfig.json: *new* {} -/user/username/projects/demo/animals/animal.ts: *new* +/user/username/projects/demo/core/tsconfig.json: *new* {} -/user/username/projects/demo/animals/dog.ts: *new* +/user/username/projects/demo/core/utilities.ts: *new* {} -/user/username/projects/demo/animals/index.ts: *new* +/user/username/projects/demo/tsconfig-base.json: *new* + {} +/user/username/projects/demo/tsconfig.json: *new* {} /user/username/projects/demo/zoo/tsconfig.json: *new* {} /user/username/projects/demo/zoo/zoo.ts: *new* {} -/user/username/projects/demo/tsconfig.json: *new* - {} FsWatchesRecursive:: -/user/username/projects/demo/core: *new* - {} /user/username/projects/demo/animals: *new* {} +/user/username/projects/demo/core: *new* + {} /user/username/projects/demo/zoo: *new* {} diff --git a/tests/baselines/reference/tsbuildWatch/demo/updates-with-circular-reference.js b/tests/baselines/reference/tsbuildWatch/demo/updates-with-circular-reference.js index 7ad14ffe50c18..dd4811c434195 100644 --- a/tests/baselines/reference/tsbuildWatch/demo/updates-with-circular-reference.js +++ b/tests/baselines/reference/tsbuildWatch/demo/updates-with-circular-reference.js @@ -169,34 +169,34 @@ Output:: FsWatches:: -/user/username/projects/demo/animals/tsconfig.json: *new* - {} -/user/username/projects/demo/tsconfig-base.json: *new* - {} /user/username/projects/demo/animals/animal.ts: *new* {} /user/username/projects/demo/animals/dog.ts: *new* {} /user/username/projects/demo/animals/index.ts: *new* {} -/user/username/projects/demo/zoo/tsconfig.json: *new* - {} -/user/username/projects/demo/zoo/zoo.ts: *new* +/user/username/projects/demo/animals/tsconfig.json: *new* {} /user/username/projects/demo/core/tsconfig.json: *new* {} /user/username/projects/demo/core/utilities.ts: *new* {} +/user/username/projects/demo/tsconfig-base.json: *new* + {} /user/username/projects/demo/tsconfig.json: *new* {} +/user/username/projects/demo/zoo/tsconfig.json: *new* + {} +/user/username/projects/demo/zoo/zoo.ts: *new* + {} FsWatchesRecursive:: /user/username/projects/demo/animals: *new* {} -/user/username/projects/demo/zoo: *new* - {} /user/username/projects/demo/core: *new* {} +/user/username/projects/demo/zoo: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tsbuildWatch/libraryResolution/with-config-with-redirection.js b/tests/baselines/reference/tsbuildWatch/libraryResolution/with-config-with-redirection.js index ee731b6a9cb88..b541ac6e1f4db 100644 --- a/tests/baselines/reference/tsbuildWatch/libraryResolution/with-config-with-redirection.js +++ b/tests/baselines/reference/tsbuildWatch/libraryResolution/with-config-with-redirection.js @@ -466,22 +466,20 @@ Shape signatures in builder refreshed for:: /home/src/projects/project4/utils.d.ts (used version) PolledWatches:: -/home/src/projects/node_modules/@typescript/lib-webworker/package.json: *new* - {"pollingInterval":2000} -/home/src/projects/node_modules/@typescript/lib-scripthost/package.json: *new* +/home/src/projects/node_modules/@typescript/lib-dom/package.json: *new* {"pollingInterval":2000} /home/src/projects/node_modules/@typescript/lib-es5/package.json: *new* {"pollingInterval":2000} -/home/src/projects/project1/typeroot1/sometype/package.json: *new* +/home/src/projects/node_modules/@typescript/lib-esnext/package.json: *new* {"pollingInterval":2000} -/home/src/projects/node_modules/@typescript/lib-dom/package.json: *new* +/home/src/projects/node_modules/@typescript/lib-scripthost/package.json: *new* {"pollingInterval":2000} -/home/src/projects/node_modules/@typescript/lib-esnext/package.json: *new* +/home/src/projects/node_modules/@typescript/lib-webworker/package.json: *new* + {"pollingInterval":2000} +/home/src/projects/project1/typeroot1/sometype/package.json: *new* {"pollingInterval":2000} FsWatches:: -/home/src/projects/project1/tsconfig.json: *new* - {} /home/src/projects/project1/core.d.ts: *new* {} /home/src/projects/project1/file.ts: *new* @@ -490,26 +488,28 @@ FsWatches:: {} /home/src/projects/project1/index.ts: *new* {} -/home/src/projects/project1/utils.d.ts: *new* +/home/src/projects/project1/tsconfig.json: *new* {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: *new* {} -/home/src/projects/project2/tsconfig.json: *new* +/home/src/projects/project1/utils.d.ts: *new* {} /home/src/projects/project2/index.ts: *new* {} -/home/src/projects/project2/utils.d.ts: *new* +/home/src/projects/project2/tsconfig.json: *new* {} -/home/src/projects/project3/tsconfig.json: *new* +/home/src/projects/project2/utils.d.ts: *new* {} /home/src/projects/project3/index.ts: *new* {} -/home/src/projects/project3/utils.d.ts: *new* +/home/src/projects/project3/tsconfig.json: *new* {} -/home/src/projects/project4/tsconfig.json: *new* +/home/src/projects/project3/utils.d.ts: *new* {} /home/src/projects/project4/index.ts: *new* {} +/home/src/projects/project4/tsconfig.json: *new* + {} /home/src/projects/project4/utils.d.ts: *new* {} diff --git a/tests/baselines/reference/tsbuildWatch/libraryResolution/with-config.js b/tests/baselines/reference/tsbuildWatch/libraryResolution/with-config.js index 847667a689a20..ec805f15e762a 100644 --- a/tests/baselines/reference/tsbuildWatch/libraryResolution/with-config.js +++ b/tests/baselines/reference/tsbuildWatch/libraryResolution/with-config.js @@ -477,22 +477,20 @@ Shape signatures in builder refreshed for:: /home/src/projects/project4/utils.d.ts (used version) PolledWatches:: -/home/src/projects/node_modules/@typescript/lib-webworker/package.json: *new* - {"pollingInterval":2000} -/home/src/projects/node_modules/@typescript/lib-scripthost/package.json: *new* +/home/src/projects/node_modules/@typescript/lib-dom/package.json: *new* {"pollingInterval":2000} /home/src/projects/node_modules/@typescript/lib-es5/package.json: *new* {"pollingInterval":2000} -/home/src/projects/project1/typeroot1/sometype/package.json: *new* +/home/src/projects/node_modules/@typescript/lib-esnext/package.json: *new* {"pollingInterval":2000} -/home/src/projects/node_modules/@typescript/lib-dom/package.json: *new* +/home/src/projects/node_modules/@typescript/lib-scripthost/package.json: *new* {"pollingInterval":2000} -/home/src/projects/node_modules/@typescript/lib-esnext/package.json: *new* +/home/src/projects/node_modules/@typescript/lib-webworker/package.json: *new* + {"pollingInterval":2000} +/home/src/projects/project1/typeroot1/sometype/package.json: *new* {"pollingInterval":2000} FsWatches:: -/home/src/projects/project1/tsconfig.json: *new* - {} /home/src/projects/project1/core.d.ts: *new* {} /home/src/projects/project1/file.ts: *new* @@ -501,26 +499,28 @@ FsWatches:: {} /home/src/projects/project1/index.ts: *new* {} -/home/src/projects/project1/utils.d.ts: *new* +/home/src/projects/project1/tsconfig.json: *new* {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: *new* {} -/home/src/projects/project2/tsconfig.json: *new* +/home/src/projects/project1/utils.d.ts: *new* {} /home/src/projects/project2/index.ts: *new* {} -/home/src/projects/project2/utils.d.ts: *new* +/home/src/projects/project2/tsconfig.json: *new* {} -/home/src/projects/project3/tsconfig.json: *new* +/home/src/projects/project2/utils.d.ts: *new* {} /home/src/projects/project3/index.ts: *new* {} -/home/src/projects/project3/utils.d.ts: *new* +/home/src/projects/project3/tsconfig.json: *new* {} -/home/src/projects/project4/tsconfig.json: *new* +/home/src/projects/project3/utils.d.ts: *new* {} /home/src/projects/project4/index.ts: *new* {} +/home/src/projects/project4/tsconfig.json: *new* + {} /home/src/projects/project4/utils.d.ts: *new* {} diff --git a/tests/baselines/reference/tsbuildWatch/moduleResolution/build-mode-watches-for-changes-to-package-json-main-fields.js b/tests/baselines/reference/tsbuildWatch/moduleResolution/build-mode-watches-for-changes-to-package-json-main-fields.js index e314e2b405c0d..c6b979ad4e36e 100644 --- a/tests/baselines/reference/tsbuildWatch/moduleResolution/build-mode-watches-for-changes-to-package-json-main-fields.js +++ b/tests/baselines/reference/tsbuildWatch/moduleResolution/build-mode-watches-for-changes-to-package-json-main-fields.js @@ -141,7 +141,9 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (used version) FsWatches:: -/user/username/projects/myproject/packages/pkg2/tsconfig.json: *new* +/user/username/projects/myproject/packages/pkg1/index.ts: *new* + {} +/user/username/projects/myproject/packages/pkg1/tsconfig.json: *new* {} /user/username/projects/myproject/packages/pkg2/const.ts: *new* {} @@ -149,18 +151,16 @@ FsWatches:: {} /user/username/projects/myproject/packages/pkg2/other.ts: *new* {} -/user/username/projects/myproject/packages/pkg1/tsconfig.json: *new* - {} -/user/username/projects/myproject/packages/pkg1/index.ts: *new* - {} /user/username/projects/myproject/packages/pkg2/package.json: *new* {} +/user/username/projects/myproject/packages/pkg2/tsconfig.json: *new* + {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/pkg2: *new* - {} /user/username/projects/myproject/packages/pkg1: *new* {} +/user/username/projects/myproject/packages/pkg2: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tsbuildWatch/moduleResolution/resolves-specifier-in-output-declaration-file-from-referenced-project-correctly-with-cts-and-mts-extensions.js b/tests/baselines/reference/tsbuildWatch/moduleResolution/resolves-specifier-in-output-declaration-file-from-referenced-project-correctly-with-cts-and-mts-extensions.js index 89ef60c3b40a2..5bbe1ffea2727 100644 --- a/tests/baselines/reference/tsbuildWatch/moduleResolution/resolves-specifier-in-output-declaration-file-from-referenced-project-correctly-with-cts-and-mts-extensions.js +++ b/tests/baselines/reference/tsbuildWatch/moduleResolution/resolves-specifier-in-output-declaration-file-from-referenced-project-correctly-with-cts-and-mts-extensions.js @@ -155,7 +155,11 @@ PolledWatches:: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/packages/pkg2/tsconfig.json: *new* +/user/username/projects/myproject/packages/pkg1/index.ts: *new* + {} +/user/username/projects/myproject/packages/pkg1/package.json: *new* + {} +/user/username/projects/myproject/packages/pkg1/tsconfig.json: *new* {} /user/username/projects/myproject/packages/pkg2/const.cts: *new* {} @@ -163,18 +167,14 @@ FsWatches:: {} /user/username/projects/myproject/packages/pkg2/package.json: *new* {} -/user/username/projects/myproject/packages/pkg1/tsconfig.json: *new* - {} -/user/username/projects/myproject/packages/pkg1/index.ts: *new* - {} -/user/username/projects/myproject/packages/pkg1/package.json: *new* +/user/username/projects/myproject/packages/pkg2/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/pkg2: *new* - {} /user/username/projects/myproject/packages/pkg1: *new* {} +/user/username/projects/myproject/packages/pkg2: *new* + {} exitCode:: ExitStatus.undefined @@ -654,30 +654,30 @@ PolledWatches:: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/packages/pkg2/tsconfig.json: - {} -/user/username/projects/myproject/packages/pkg2/const.cts: +/user/username/projects/myproject/packages/pkg1/index.ts: {} -/user/username/projects/myproject/packages/pkg2/package.json: +/user/username/projects/myproject/packages/pkg1/package.json: {} /user/username/projects/myproject/packages/pkg1/tsconfig.json: {} -/user/username/projects/myproject/packages/pkg1/index.ts: - {} -/user/username/projects/myproject/packages/pkg1/package.json: +/user/username/projects/myproject/packages/pkg2/const.cts: {} /user/username/projects/myproject/packages/pkg2/index.cts: *new* {} +/user/username/projects/myproject/packages/pkg2/package.json: + {} +/user/username/projects/myproject/packages/pkg2/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/packages/pkg2/index.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/pkg2: - {} /user/username/projects/myproject/packages/pkg1: {} +/user/username/projects/myproject/packages/pkg2: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tsbuildWatch/moduleResolutionCache/handles-the-cache-correctly-when-two-projects-use-different-module-resolution-settings.js b/tests/baselines/reference/tsbuildWatch/moduleResolutionCache/handles-the-cache-correctly-when-two-projects-use-different-module-resolution-settings.js index 01a71ca749add..c3b4340d50e92 100644 --- a/tests/baselines/reference/tsbuildWatch/moduleResolutionCache/handles-the-cache-correctly-when-two-projects-use-different-module-resolution-settings.js +++ b/tests/baselines/reference/tsbuildWatch/moduleResolutionCache/handles-the-cache-correctly-when-two-projects-use-different-module-resolution-settings.js @@ -109,22 +109,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/@types/foo/index.d.ts (used version) PolledWatches:: -/user/username/projects/myproject/project1/node_modules/file/package.json: *new* +/user/username/projects/myproject/node_modules/@types/bar/package.json: *new* {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types/foo/package.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types/bar/package.json: *new* +/user/username/projects/myproject/project1/node_modules/file/package.json: *new* {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/project1/tsconfig.json: *new* - {} /user/username/projects/myproject/project1/index.ts: *new* {} -/user/username/projects/myproject/project2/tsconfig.json: *new* +/user/username/projects/myproject/project1/tsconfig.json: *new* {} /user/username/projects/myproject/project2/index.ts: *new* {} +/user/username/projects/myproject/project2/tsconfig.json: *new* + {} /user/username/projects/myproject/tsconfig.json: *new* {} diff --git a/tests/baselines/reference/tsbuildWatch/noEmit/does-not-go-in-loop-when-watching-when-no-files-are-emitted-with-incremental.js b/tests/baselines/reference/tsbuildWatch/noEmit/does-not-go-in-loop-when-watching-when-no-files-are-emitted-with-incremental.js index 5869b093322a9..4bd0b18a3de1d 100644 --- a/tests/baselines/reference/tsbuildWatch/noEmit/does-not-go-in-loop-when-watching-when-no-files-are-emitted-with-incremental.js +++ b/tests/baselines/reference/tsbuildWatch/noEmit/does-not-go-in-loop-when-watching-when-no-files-are-emitted-with-incremental.js @@ -60,12 +60,12 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /user/username/projects/myproject/a.js: *new* {} /user/username/projects/myproject/b.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject: *new* diff --git a/tests/baselines/reference/tsbuildWatch/noEmit/does-not-go-in-loop-when-watching-when-no-files-are-emitted.js b/tests/baselines/reference/tsbuildWatch/noEmit/does-not-go-in-loop-when-watching-when-no-files-are-emitted.js index d3aa22a7b1e84..b08eeea752152 100644 --- a/tests/baselines/reference/tsbuildWatch/noEmit/does-not-go-in-loop-when-watching-when-no-files-are-emitted.js +++ b/tests/baselines/reference/tsbuildWatch/noEmit/does-not-go-in-loop-when-watching-when-no-files-are-emitted.js @@ -60,12 +60,12 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /user/username/projects/myproject/a.js: *new* {} /user/username/projects/myproject/b.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject: *new* diff --git a/tests/baselines/reference/tsbuildWatch/noEmitOnError/does-not-emit-any-files-on-error-with-incremental.js b/tests/baselines/reference/tsbuildWatch/noEmitOnError/does-not-emit-any-files-on-error-with-incremental.js index ca223f82f11f4..bb7f4ac6efaca 100644 --- a/tests/baselines/reference/tsbuildWatch/noEmitOnError/does-not-emit-any-files-on-error-with-incremental.js +++ b/tests/baselines/reference/tsbuildWatch/noEmitOnError/does-not-emit-any-files-on-error-with-incremental.js @@ -75,14 +75,14 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: *new* - {} /user/username/projects/noemitonerror/shared/types/db.ts: *new* {} /user/username/projects/noemitonerror/src/main.ts: *new* {} /user/username/projects/noemitonerror/src/other.ts: *new* {} +/user/username/projects/noemitonerror/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: *new* diff --git a/tests/baselines/reference/tsbuildWatch/noEmitOnError/does-not-emit-any-files-on-error.js b/tests/baselines/reference/tsbuildWatch/noEmitOnError/does-not-emit-any-files-on-error.js index d1c82655d8782..27913569a1785 100644 --- a/tests/baselines/reference/tsbuildWatch/noEmitOnError/does-not-emit-any-files-on-error.js +++ b/tests/baselines/reference/tsbuildWatch/noEmitOnError/does-not-emit-any-files-on-error.js @@ -75,14 +75,14 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: *new* - {} /user/username/projects/noemitonerror/shared/types/db.ts: *new* {} /user/username/projects/noemitonerror/src/main.ts: *new* {} /user/username/projects/noemitonerror/src/other.ts: *new* {} +/user/username/projects/noemitonerror/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: *new* diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/creates-solution-in-watch-mode.js b/tests/baselines/reference/tsbuildWatch/programUpdates/creates-solution-in-watch-mode.js index 5892309a946ca..acc1c92039985 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/creates-solution-in-watch-mode.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/creates-solution-in-watch-mode.js @@ -176,20 +176,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: *new* - {} /user/username/projects/sample1/core/anothermodule.ts: *new* {} /user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: *new* +/user/username/projects/sample1/core/tsconfig.json: *new* {} /user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: *new* +/user/username/projects/sample1/logic/tsconfig.json: *new* {} /user/username/projects/sample1/tests/index.ts: *new* {} +/user/username/projects/sample1/tests/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/sample1/core: *new* diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/incremental-updates-in-verbose-mode.js b/tests/baselines/reference/tsbuildWatch/programUpdates/incremental-updates-in-verbose-mode.js index ef1c138b297aa..3e0324a1a8e95 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/incremental-updates-in-verbose-mode.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/incremental-updates-in-verbose-mode.js @@ -193,20 +193,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: *new* - {} /user/username/projects/sample1/core/anothermodule.ts: *new* {} /user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: *new* +/user/username/projects/sample1/core/tsconfig.json: *new* {} /user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: *new* +/user/username/projects/sample1/logic/tsconfig.json: *new* {} /user/username/projects/sample1/tests/index.ts: *new* {} +/user/username/projects/sample1/tests/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/sample1/core: *new* diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/declarationEmitErrors/introduceError/when-file-with-no-error-changes.js b/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/declarationEmitErrors/introduceError/when-file-with-no-error-changes.js index c0d6273c1178f..0a35b7d29b73d 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/declarationEmitErrors/introduceError/when-file-with-no-error-changes.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/declarationEmitErrors/introduceError/when-file-with-no-error-changes.js @@ -54,12 +54,12 @@ Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewithouterror.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/solution/app/tsconfig.json: *new* - {} /user/username/projects/solution/app/filewitherror.ts: *new* {} /user/username/projects/solution/app/filewithouterror.ts: *new* {} +/user/username/projects/solution/app/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/solution/app: *new* diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/declarationEmitErrors/introduceError/when-fixing-errors-only-changed-file-is-emitted.js b/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/declarationEmitErrors/introduceError/when-fixing-errors-only-changed-file-is-emitted.js index 94fb6d142608d..f14b57255b5a8 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/declarationEmitErrors/introduceError/when-fixing-errors-only-changed-file-is-emitted.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/declarationEmitErrors/introduceError/when-fixing-errors-only-changed-file-is-emitted.js @@ -54,12 +54,12 @@ Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewithouterror.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/solution/app/tsconfig.json: *new* - {} /user/username/projects/solution/app/filewitherror.ts: *new* {} /user/username/projects/solution/app/filewithouterror.ts: *new* {} +/user/username/projects/solution/app/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/solution/app: *new* diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/declarationEmitErrors/when-file-with-no-error-changes.js b/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/declarationEmitErrors/when-file-with-no-error-changes.js index 239e76454cd89..165f283b17e1d 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/declarationEmitErrors/when-file-with-no-error-changes.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/declarationEmitErrors/when-file-with-no-error-changes.js @@ -59,12 +59,12 @@ Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewithouterror.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/solution/app/tsconfig.json: *new* - {} /user/username/projects/solution/app/filewitherror.ts: *new* {} /user/username/projects/solution/app/filewithouterror.ts: *new* {} +/user/username/projects/solution/app/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/solution/app: *new* diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/declarationEmitErrors/when-fixing-error-files-all-files-are-emitted.js b/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/declarationEmitErrors/when-fixing-error-files-all-files-are-emitted.js index 8a49629350655..6f02ffe700901 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/declarationEmitErrors/when-fixing-error-files-all-files-are-emitted.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/declarationEmitErrors/when-fixing-error-files-all-files-are-emitted.js @@ -59,12 +59,12 @@ Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewithouterror.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/solution/app/tsconfig.json: *new* - {} /user/username/projects/solution/app/filewitherror.ts: *new* {} /user/username/projects/solution/app/filewithouterror.ts: *new* {} +/user/username/projects/solution/app/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/solution/app: *new* diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/when-preserveWatchOutput-is-not-used.js b/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/when-preserveWatchOutput-is-not-used.js index 9ea78ac785b42..c6edeff33bf87 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/when-preserveWatchOutput-is-not-used.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/when-preserveWatchOutput-is-not-used.js @@ -176,20 +176,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: *new* - {} /user/username/projects/sample1/core/anothermodule.ts: *new* {} /user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: *new* +/user/username/projects/sample1/core/tsconfig.json: *new* {} /user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: *new* +/user/username/projects/sample1/logic/tsconfig.json: *new* {} /user/username/projects/sample1/tests/index.ts: *new* {} +/user/username/projects/sample1/tests/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/sample1/core: *new* diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/when-preserveWatchOutput-is-passed-on-command-line.js b/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/when-preserveWatchOutput-is-passed-on-command-line.js index faf5c70abc9e9..49741378f06f5 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/when-preserveWatchOutput-is-passed-on-command-line.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/reportErrors/when-preserveWatchOutput-is-passed-on-command-line.js @@ -175,20 +175,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: *new* - {} /user/username/projects/sample1/core/anothermodule.ts: *new* {} /user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: *new* +/user/username/projects/sample1/core/tsconfig.json: *new* {} /user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: *new* +/user/username/projects/sample1/logic/tsconfig.json: *new* {} /user/username/projects/sample1/tests/index.ts: *new* {} +/user/username/projects/sample1/tests/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/sample1/core: *new* diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit-with-outDir-specified.js b/tests/baselines/reference/tsbuildWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit-with-outDir-specified.js index 235c81e3263a4..e64847ff5a27d 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit-with-outDir-specified.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit-with-outDir-specified.js @@ -62,12 +62,12 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: *new* - {} /user/username/projects/sample1/core/anothermodule.ts: *new* {} /user/username/projects/sample1/core/index.ts: *new* {} +/user/username/projects/sample1/core/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/sample1/core: *new* @@ -218,13 +218,13 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/file3.ts (computed .d.ts) FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} /user/username/projects/sample1/core/anothermodule.ts: {} +/user/username/projects/sample1/core/file3.ts: *new* + {} /user/username/projects/sample1/core/index.ts: {} -/user/username/projects/sample1/core/file3.ts: *new* +/user/username/projects/sample1/core/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit.js b/tests/baselines/reference/tsbuildWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit.js index 72ce1f1a30ac6..96be899153cab 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit.js @@ -69,12 +69,12 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: *new* - {} /user/username/projects/sample1/core/anothermodule.ts: *new* {} /user/username/projects/sample1/core/index.ts: *new* {} +/user/username/projects/sample1/core/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/sample1/core: *new* @@ -233,13 +233,13 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/file3.ts (computed .d.ts) FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} /user/username/projects/sample1/core/anothermodule.ts: {} +/user/username/projects/sample1/core/file3.ts: *new* + {} /user/username/projects/sample1/core/index.ts: {} -/user/username/projects/sample1/core/file3.ts: *new* +/user/username/projects/sample1/core/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/tsbuildinfo-has-error.js b/tests/baselines/reference/tsbuildWatch/programUpdates/tsbuildinfo-has-error.js index 0d3afd64d31f3..8f22231258ff0 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/tsbuildinfo-has-error.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/tsbuildinfo-has-error.js @@ -48,10 +48,10 @@ Shape signatures in builder refreshed for:: /src/project/main.ts (used version) FsWatches:: -/src/project/tsconfig.json: *new* - {} /src/project/main.ts: *new* {} +/src/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /src/project: *new* diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/verify-building-references-watches-only-those-projects.js b/tests/baselines/reference/tsbuildWatch/programUpdates/verify-building-references-watches-only-those-projects.js index 7204ce4ce9ece..3b4c73808d7da 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/verify-building-references-watches-only-those-projects.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/verify-building-references-watches-only-those-projects.js @@ -152,16 +152,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: *new* - {} /user/username/projects/sample1/core/anothermodule.ts: *new* {} /user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: *new* +/user/username/projects/sample1/core/tsconfig.json: *new* {} /user/username/projects/sample1/logic/index.ts: *new* {} +/user/username/projects/sample1/logic/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/sample1/core: *new* diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/watches-config-files-that-are-not-present.js b/tests/baselines/reference/tsbuildWatch/programUpdates/watches-config-files-that-are-not-present.js index c9849bc05d767..8297a7ab7d08f 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/watches-config-files-that-are-not-present.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/watches-config-files-that-are-not-present.js @@ -103,16 +103,16 @@ PolledWatches:: {"pollingInterval":2000} FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: *new* - {} /user/username/projects/sample1/core/anothermodule.ts: *new* {} /user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: *new* +/user/username/projects/sample1/core/tsconfig.json: *new* {} /user/username/projects/sample1/tests/index.ts: *new* {} +/user/username/projects/sample1/tests/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/sample1/core: *new* @@ -246,17 +246,17 @@ PolledWatches *deleted*:: {"pollingInterval":2000} FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} /user/username/projects/sample1/core/anothermodule.ts: {} /user/username/projects/sample1/core/index.ts: {} -/user/username/projects/sample1/tests/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: + {} +/user/username/projects/sample1/logic/tsconfig.json: *new* {} /user/username/projects/sample1/tests/index.ts: {} -/user/username/projects/sample1/logic/tsconfig.json: *new* +/user/username/projects/sample1/tests/tsconfig.json: {} FsWatchesRecursive:: @@ -297,19 +297,19 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} /user/username/projects/sample1/core/anothermodule.ts: {} /user/username/projects/sample1/core/index.ts: {} -/user/username/projects/sample1/tests/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: {} -/user/username/projects/sample1/tests/index.ts: +/user/username/projects/sample1/logic/index.ts: *new* {} /user/username/projects/sample1/logic/tsconfig.json: {} -/user/username/projects/sample1/logic/index.ts: *new* +/user/username/projects/sample1/tests/index.ts: + {} +/user/username/projects/sample1/tests/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/when-referenced-project-change-introduces-error-in-the-down-stream-project-and-then-fixes-it.js b/tests/baselines/reference/tsbuildWatch/programUpdates/when-referenced-project-change-introduces-error-in-the-down-stream-project-and-then-fixes-it.js index 5a531887b152d..492034a2f85a0 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/when-referenced-project-change-introduces-error-in-the-down-stream-project-and-then-fixes-it.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/when-referenced-project-change-introduces-error-in-the-down-stream-project-and-then-fixes-it.js @@ -81,20 +81,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/app/app.ts (used version) FsWatches:: -/user/username/projects/sample1/library/tsconfig.json: *new* - {} -/user/username/projects/sample1/library/library.ts: *new* +/user/username/projects/sample1/app/app.ts: *new* {} /user/username/projects/sample1/app/tsconfig.json: *new* {} -/user/username/projects/sample1/app/app.ts: *new* +/user/username/projects/sample1/library/library.ts: *new* + {} +/user/username/projects/sample1/library/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/library: *new* - {} /user/username/projects/sample1/app: *new* {} +/user/username/projects/sample1/library: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/when-referenced-using-prepend-builds-referencing-project-even-for-non-local-change.js b/tests/baselines/reference/tsbuildWatch/programUpdates/when-referenced-using-prepend-builds-referencing-project-even-for-non-local-change.js index 5c814bbc42929..1e64d87542a0a 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/when-referenced-using-prepend-builds-referencing-project-even-for-non-local-change.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/when-referenced-using-prepend-builds-referencing-project-even-for-non-local-change.js @@ -59,14 +59,14 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: *new* - {} /user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: *new* +/user/username/projects/sample1/core/tsconfig.json: *new* {} /user/username/projects/sample1/logic/index.ts: *new* {} +/user/username/projects/sample1/logic/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/sample1/core: *new* diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/with-circular-project-reference/builds-when-new-file-is-added,-and-its-subsequent-updates.js b/tests/baselines/reference/tsbuildWatch/programUpdates/with-circular-project-reference/builds-when-new-file-is-added,-and-its-subsequent-updates.js index a908a07a61aa8..ab2a0b4a37480 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/with-circular-project-reference/builds-when-new-file-is-added,-and-its-subsequent-updates.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/with-circular-project-reference/builds-when-new-file-is-added,-and-its-subsequent-updates.js @@ -150,20 +150,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: *new* - {} /user/username/projects/sample1/core/anothermodule.ts: *new* {} /user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: *new* +/user/username/projects/sample1/core/tsconfig.json: *new* {} /user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: *new* +/user/username/projects/sample1/logic/tsconfig.json: *new* {} /user/username/projects/sample1/tests/index.ts: *new* {} +/user/username/projects/sample1/tests/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/sample1/core: *new* @@ -518,21 +518,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/newfile.ts (computed .d.ts) FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} /user/username/projects/sample1/core/anothermodule.ts: {} /user/username/projects/sample1/core/index.ts: {} -/user/username/projects/sample1/logic/tsconfig.json: +/user/username/projects/sample1/core/newfile.ts: *new* + {} +/user/username/projects/sample1/core/tsconfig.json: {} /user/username/projects/sample1/logic/index.ts: {} -/user/username/projects/sample1/tests/tsconfig.json: +/user/username/projects/sample1/logic/tsconfig.json: {} /user/username/projects/sample1/tests/index.ts: {} -/user/username/projects/sample1/core/newfile.ts: *new* +/user/username/projects/sample1/tests/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/with-circular-project-reference/change-builds-changes-and-reports-found-errors-message.js b/tests/baselines/reference/tsbuildWatch/programUpdates/with-circular-project-reference/change-builds-changes-and-reports-found-errors-message.js index ff50303ac6600..d7b8f2b61924c 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/with-circular-project-reference/change-builds-changes-and-reports-found-errors-message.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/with-circular-project-reference/change-builds-changes-and-reports-found-errors-message.js @@ -150,20 +150,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: *new* - {} /user/username/projects/sample1/core/anothermodule.ts: *new* {} /user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: *new* +/user/username/projects/sample1/core/tsconfig.json: *new* {} /user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: *new* +/user/username/projects/sample1/logic/tsconfig.json: *new* {} /user/username/projects/sample1/tests/index.ts: *new* {} +/user/username/projects/sample1/tests/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/sample1/core: *new* diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/with-circular-project-reference/non-local-change-does-not-start-build-of-referencing-projects.js b/tests/baselines/reference/tsbuildWatch/programUpdates/with-circular-project-reference/non-local-change-does-not-start-build-of-referencing-projects.js index 72296fe5c448f..501febf8aa00a 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/with-circular-project-reference/non-local-change-does-not-start-build-of-referencing-projects.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/with-circular-project-reference/non-local-change-does-not-start-build-of-referencing-projects.js @@ -150,20 +150,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: *new* - {} /user/username/projects/sample1/core/anothermodule.ts: *new* {} /user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: *new* +/user/username/projects/sample1/core/tsconfig.json: *new* {} /user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: *new* +/user/username/projects/sample1/logic/tsconfig.json: *new* {} /user/username/projects/sample1/tests/index.ts: *new* {} +/user/username/projects/sample1/tests/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/sample1/core: *new* diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/with-simple-project-reference-graph/builds-when-new-file-is-added,-and-its-subsequent-updates.js b/tests/baselines/reference/tsbuildWatch/programUpdates/with-simple-project-reference-graph/builds-when-new-file-is-added,-and-its-subsequent-updates.js index 3d812a846ea64..62b4f75eb8ee1 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/with-simple-project-reference-graph/builds-when-new-file-is-added,-and-its-subsequent-updates.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/with-simple-project-reference-graph/builds-when-new-file-is-added,-and-its-subsequent-updates.js @@ -176,20 +176,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: *new* - {} /user/username/projects/sample1/core/anothermodule.ts: *new* {} /user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: *new* +/user/username/projects/sample1/core/tsconfig.json: *new* {} /user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: *new* +/user/username/projects/sample1/logic/tsconfig.json: *new* {} /user/username/projects/sample1/tests/index.ts: *new* {} +/user/username/projects/sample1/tests/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/sample1/core: *new* @@ -552,21 +552,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/newfile.ts (computed .d.ts) FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} /user/username/projects/sample1/core/anothermodule.ts: {} /user/username/projects/sample1/core/index.ts: {} -/user/username/projects/sample1/logic/tsconfig.json: +/user/username/projects/sample1/core/newfile.ts: *new* + {} +/user/username/projects/sample1/core/tsconfig.json: {} /user/username/projects/sample1/logic/index.ts: {} -/user/username/projects/sample1/tests/tsconfig.json: +/user/username/projects/sample1/logic/tsconfig.json: {} /user/username/projects/sample1/tests/index.ts: {} -/user/username/projects/sample1/core/newfile.ts: *new* +/user/username/projects/sample1/tests/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/with-simple-project-reference-graph/change-builds-changes-and-reports-found-errors-message.js b/tests/baselines/reference/tsbuildWatch/programUpdates/with-simple-project-reference-graph/change-builds-changes-and-reports-found-errors-message.js index 45f3b30f183c9..e630fda3c0b21 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/with-simple-project-reference-graph/change-builds-changes-and-reports-found-errors-message.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/with-simple-project-reference-graph/change-builds-changes-and-reports-found-errors-message.js @@ -176,20 +176,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: *new* - {} /user/username/projects/sample1/core/anothermodule.ts: *new* {} /user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: *new* +/user/username/projects/sample1/core/tsconfig.json: *new* {} /user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: *new* +/user/username/projects/sample1/logic/tsconfig.json: *new* {} /user/username/projects/sample1/tests/index.ts: *new* {} +/user/username/projects/sample1/tests/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/sample1/core: *new* diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/with-simple-project-reference-graph/non-local-change-does-not-start-build-of-referencing-projects.js b/tests/baselines/reference/tsbuildWatch/programUpdates/with-simple-project-reference-graph/non-local-change-does-not-start-build-of-referencing-projects.js index 9ba0aa2e0cdcd..1b199b9821c99 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/with-simple-project-reference-graph/non-local-change-does-not-start-build-of-referencing-projects.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/with-simple-project-reference-graph/non-local-change-does-not-start-build-of-referencing-projects.js @@ -176,20 +176,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: *new* - {} /user/username/projects/sample1/core/anothermodule.ts: *new* {} /user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: *new* +/user/username/projects/sample1/core/tsconfig.json: *new* {} /user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: *new* +/user/username/projects/sample1/logic/tsconfig.json: *new* {} /user/username/projects/sample1/tests/index.ts: *new* {} +/user/username/projects/sample1/tests/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/sample1/core: *new* diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/works-correctly-when-project-with-extended-config-is-removed.js b/tests/baselines/reference/tsbuildWatch/programUpdates/works-correctly-when-project-with-extended-config-is-removed.js index 40aa86b2a3223..76ecf61bb41ba 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/works-correctly-when-project-with-extended-config-is-removed.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/works-correctly-when-project-with-extended-config-is-removed.js @@ -94,19 +94,19 @@ Shape signatures in builder refreshed for:: /a/b/other.ts (computed .d.ts during emit) FsWatches:: -/a/b/project1.tsconfig.json: *new* - {} /a/b/alpha.tsconfig.json: *new* {} +/a/b/bravo.tsconfig.json: *new* + {} /a/b/commonfile1.ts: *new* {} /a/b/commonfile2.ts: *new* {} -/a/b/project2.tsconfig.json: *new* +/a/b/other.ts: *new* {} -/a/b/bravo.tsconfig.json: *new* +/a/b/project1.tsconfig.json: *new* {} -/a/b/other.ts: *new* +/a/b/project2.tsconfig.json: *new* {} /a/b/tsconfig.json: *new* {} @@ -282,24 +282,24 @@ Output:: FsWatches:: -/a/b/project1.tsconfig.json: - {} /a/b/alpha.tsconfig.json: {} /a/b/commonfile1.ts: {} /a/b/commonfile2.ts: {} +/a/b/project1.tsconfig.json: + {} /a/b/tsconfig.json: {} FsWatches *deleted*:: -/a/b/project2.tsconfig.json: - {} /a/b/bravo.tsconfig.json: {} /a/b/other.ts: {} +/a/b/project2.tsconfig.json: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/works-when-noUnusedParameters-changes-to-false.js b/tests/baselines/reference/tsbuildWatch/programUpdates/works-when-noUnusedParameters-changes-to-false.js index 0f3e85e01c297..273a541da0573 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/works-when-noUnusedParameters-changes-to-false.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/works-when-noUnusedParameters-changes-to-false.js @@ -50,10 +50,10 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/index.ts (used version) FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /user/username/projects/myproject/index.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject: *new* diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/works-with-extended-source-files.js b/tests/baselines/reference/tsbuildWatch/programUpdates/works-with-extended-source-files.js index 78784727d6dae..f5f8b7dc149ea 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/works-with-extended-source-files.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/works-with-extended-source-files.js @@ -125,21 +125,13 @@ Shape signatures in builder refreshed for:: /a/b/other2.ts (used version) FsWatches:: -/a/b/project1.tsconfig.json: *new* - {} /a/b/alpha.tsconfig.json: *new* {} -/a/b/commonfile1.ts: *new* - {} -/a/b/commonfile2.ts: *new* - {} -/a/b/project2.tsconfig.json: *new* - {} /a/b/bravo.tsconfig.json: *new* {} -/a/b/other.ts: *new* +/a/b/commonfile1.ts: *new* {} -/a/b/project3.tsconfig.json: *new* +/a/b/commonfile2.ts: *new* {} /a/b/extendsconfig1.tsconfig.json: *new* {} @@ -147,8 +139,16 @@ FsWatches:: {} /a/b/extendsconfig3.tsconfig.json: *new* {} +/a/b/other.ts: *new* + {} /a/b/other2.ts: *new* {} +/a/b/project1.tsconfig.json: *new* + {} +/a/b/project2.tsconfig.json: *new* + {} +/a/b/project3.tsconfig.json: *new* + {} exitCode:: ExitStatus.undefined @@ -650,28 +650,28 @@ Shape signatures in builder refreshed for:: /a/b/other2.ts (computed .d.ts) FsWatches:: -/a/b/project1.tsconfig.json: - {} /a/b/alpha.tsconfig.json: {} /a/b/commonfile1.ts: {} /a/b/commonfile2.ts: {} -/a/b/project2.tsconfig.json: - {} -/a/b/other.ts: - {} -/a/b/project3.tsconfig.json: - {} /a/b/extendsconfig1.tsconfig.json: {} /a/b/extendsconfig2.tsconfig.json: {} /a/b/extendsconfig3.tsconfig.json: {} +/a/b/other.ts: + {} /a/b/other2.ts: {} +/a/b/project1.tsconfig.json: + {} +/a/b/project2.tsconfig.json: + {} +/a/b/project3.tsconfig.json: + {} FsWatches *deleted*:: /a/b/bravo.tsconfig.json: @@ -938,25 +938,25 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: FsWatches:: -/a/b/project1.tsconfig.json: - {} /a/b/alpha.tsconfig.json: {} /a/b/commonfile1.ts: {} /a/b/commonfile2.ts: {} -/a/b/project2.tsconfig.json: +/a/b/extendsconfig1.tsconfig.json: + {} +/a/b/extendsconfig2.tsconfig.json: {} /a/b/other.ts: {} -/a/b/project3.tsconfig.json: +/a/b/other2.ts: {} -/a/b/extendsconfig1.tsconfig.json: +/a/b/project1.tsconfig.json: {} -/a/b/extendsconfig2.tsconfig.json: +/a/b/project2.tsconfig.json: {} -/a/b/other2.ts: +/a/b/project3.tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsbuildWatch/projectsBuilding/when-there-are-23-projects-in-a-solution.js b/tests/baselines/reference/tsbuildWatch/projectsBuilding/when-there-are-23-projects-in-a-solution.js index 355056283cb36..8dd85765c173f 100644 --- a/tests/baselines/reference/tsbuildWatch/projectsBuilding/when-there-are-23-projects-in-a-solution.js +++ b/tests/baselines/reference/tsbuildWatch/projectsBuilding/when-there-are-23-projects-in-a-solution.js @@ -628,121 +628,105 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg22/index.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: *new* - {} /user/username/projects/myproject/pkg0/index.ts: *new* {} -/user/username/projects/myproject/pkg1/tsconfig.json: *new* +/user/username/projects/myproject/pkg0/tsconfig.json: *new* {} /user/username/projects/myproject/pkg1/index.ts: *new* {} -/user/username/projects/myproject/pkg2/tsconfig.json: *new* - {} -/user/username/projects/myproject/pkg2/index.ts: *new* - {} -/user/username/projects/myproject/pkg3/tsconfig.json: *new* - {} -/user/username/projects/myproject/pkg3/index.ts: *new* - {} -/user/username/projects/myproject/pkg4/tsconfig.json: *new* - {} -/user/username/projects/myproject/pkg4/index.ts: *new* - {} -/user/username/projects/myproject/pkg5/tsconfig.json: *new* - {} -/user/username/projects/myproject/pkg5/index.ts: *new* - {} -/user/username/projects/myproject/pkg6/tsconfig.json: *new* - {} -/user/username/projects/myproject/pkg6/index.ts: *new* - {} -/user/username/projects/myproject/pkg7/tsconfig.json: *new* - {} -/user/username/projects/myproject/pkg7/index.ts: *new* - {} -/user/username/projects/myproject/pkg8/tsconfig.json: *new* - {} -/user/username/projects/myproject/pkg8/index.ts: *new* - {} -/user/username/projects/myproject/pkg9/tsconfig.json: *new* +/user/username/projects/myproject/pkg1/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg9/index.ts: *new* +/user/username/projects/myproject/pkg10/index.ts: *new* {} /user/username/projects/myproject/pkg10/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg10/index.ts: *new* +/user/username/projects/myproject/pkg11/index.ts: *new* {} /user/username/projects/myproject/pkg11/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg11/index.ts: *new* +/user/username/projects/myproject/pkg12/index.ts: *new* {} /user/username/projects/myproject/pkg12/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg12/index.ts: *new* +/user/username/projects/myproject/pkg13/index.ts: *new* {} /user/username/projects/myproject/pkg13/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg13/index.ts: *new* +/user/username/projects/myproject/pkg14/index.ts: *new* {} /user/username/projects/myproject/pkg14/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg14/index.ts: *new* +/user/username/projects/myproject/pkg15/index.ts: *new* {} /user/username/projects/myproject/pkg15/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg15/index.ts: *new* +/user/username/projects/myproject/pkg16/index.ts: *new* {} /user/username/projects/myproject/pkg16/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg16/index.ts: *new* +/user/username/projects/myproject/pkg17/index.ts: *new* {} /user/username/projects/myproject/pkg17/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg17/index.ts: *new* +/user/username/projects/myproject/pkg18/index.ts: *new* {} /user/username/projects/myproject/pkg18/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg18/index.ts: *new* +/user/username/projects/myproject/pkg19/index.ts: *new* {} /user/username/projects/myproject/pkg19/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg19/index.ts: *new* +/user/username/projects/myproject/pkg2/index.ts: *new* {} -/user/username/projects/myproject/pkg20/tsconfig.json: *new* +/user/username/projects/myproject/pkg2/tsconfig.json: *new* {} /user/username/projects/myproject/pkg20/index.ts: *new* {} -/user/username/projects/myproject/pkg21/tsconfig.json: *new* +/user/username/projects/myproject/pkg20/tsconfig.json: *new* {} /user/username/projects/myproject/pkg21/index.ts: *new* {} -/user/username/projects/myproject/pkg22/tsconfig.json: *new* +/user/username/projects/myproject/pkg21/tsconfig.json: *new* {} /user/username/projects/myproject/pkg22/index.ts: *new* {} -/user/username/projects/myproject/tsconfig.json: *new* +/user/username/projects/myproject/pkg22/tsconfig.json: *new* {} - -FsWatchesRecursive:: -/user/username/projects/myproject/pkg0: *new* +/user/username/projects/myproject/pkg3/index.ts: *new* {} -/user/username/projects/myproject/pkg1: *new* +/user/username/projects/myproject/pkg3/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg2: *new* +/user/username/projects/myproject/pkg4/index.ts: *new* {} -/user/username/projects/myproject/pkg3: *new* +/user/username/projects/myproject/pkg4/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg4: *new* +/user/username/projects/myproject/pkg5/index.ts: *new* {} -/user/username/projects/myproject/pkg5: *new* +/user/username/projects/myproject/pkg5/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg6: *new* +/user/username/projects/myproject/pkg6/index.ts: *new* {} -/user/username/projects/myproject/pkg7: *new* +/user/username/projects/myproject/pkg6/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg8: *new* +/user/username/projects/myproject/pkg7/index.ts: *new* {} -/user/username/projects/myproject/pkg9: *new* +/user/username/projects/myproject/pkg7/tsconfig.json: *new* + {} +/user/username/projects/myproject/pkg8/index.ts: *new* + {} +/user/username/projects/myproject/pkg8/tsconfig.json: *new* + {} +/user/username/projects/myproject/pkg9/index.ts: *new* + {} +/user/username/projects/myproject/pkg9/tsconfig.json: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* + {} + +FsWatchesRecursive:: +/user/username/projects/myproject/pkg0: *new* + {} +/user/username/projects/myproject/pkg1: *new* {} /user/username/projects/myproject/pkg10: *new* {} @@ -764,12 +748,28 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/pkg19: *new* {} +/user/username/projects/myproject/pkg2: *new* + {} /user/username/projects/myproject/pkg20: *new* {} /user/username/projects/myproject/pkg21: *new* {} /user/username/projects/myproject/pkg22: *new* {} +/user/username/projects/myproject/pkg3: *new* + {} +/user/username/projects/myproject/pkg4: *new* + {} +/user/username/projects/myproject/pkg5: *new* + {} +/user/username/projects/myproject/pkg6: *new* + {} +/user/username/projects/myproject/pkg7: *new* + {} +/user/username/projects/myproject/pkg8: *new* + {} +/user/username/projects/myproject/pkg9: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tsbuildWatch/projectsBuilding/when-there-are-3-projects-in-a-solution.js b/tests/baselines/reference/tsbuildWatch/projectsBuilding/when-there-are-3-projects-in-a-solution.js index 387a721661539..cfe97603debb5 100644 --- a/tests/baselines/reference/tsbuildWatch/projectsBuilding/when-there-are-3-projects-in-a-solution.js +++ b/tests/baselines/reference/tsbuildWatch/projectsBuilding/when-there-are-3-projects-in-a-solution.js @@ -108,18 +108,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg2/index.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: *new* - {} /user/username/projects/myproject/pkg0/index.ts: *new* {} -/user/username/projects/myproject/pkg1/tsconfig.json: *new* +/user/username/projects/myproject/pkg0/tsconfig.json: *new* {} /user/username/projects/myproject/pkg1/index.ts: *new* {} -/user/username/projects/myproject/pkg2/tsconfig.json: *new* +/user/username/projects/myproject/pkg1/tsconfig.json: *new* {} /user/username/projects/myproject/pkg2/index.ts: *new* {} +/user/username/projects/myproject/pkg2/tsconfig.json: *new* + {} /user/username/projects/myproject/tsconfig.json: *new* {} diff --git a/tests/baselines/reference/tsbuildWatch/projectsBuilding/when-there-are-5-projects-in-a-solution.js b/tests/baselines/reference/tsbuildWatch/projectsBuilding/when-there-are-5-projects-in-a-solution.js index 89afc315cb803..11215e584e63e 100644 --- a/tests/baselines/reference/tsbuildWatch/projectsBuilding/when-there-are-5-projects-in-a-solution.js +++ b/tests/baselines/reference/tsbuildWatch/projectsBuilding/when-there-are-5-projects-in-a-solution.js @@ -160,26 +160,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg4/index.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: *new* - {} /user/username/projects/myproject/pkg0/index.ts: *new* {} -/user/username/projects/myproject/pkg1/tsconfig.json: *new* +/user/username/projects/myproject/pkg0/tsconfig.json: *new* {} /user/username/projects/myproject/pkg1/index.ts: *new* {} -/user/username/projects/myproject/pkg2/tsconfig.json: *new* +/user/username/projects/myproject/pkg1/tsconfig.json: *new* {} /user/username/projects/myproject/pkg2/index.ts: *new* {} -/user/username/projects/myproject/pkg3/tsconfig.json: *new* +/user/username/projects/myproject/pkg2/tsconfig.json: *new* {} /user/username/projects/myproject/pkg3/index.ts: *new* {} -/user/username/projects/myproject/pkg4/tsconfig.json: *new* +/user/username/projects/myproject/pkg3/tsconfig.json: *new* {} /user/username/projects/myproject/pkg4/index.ts: *new* {} +/user/username/projects/myproject/pkg4/tsconfig.json: *new* + {} /user/username/projects/myproject/tsconfig.json: *new* {} diff --git a/tests/baselines/reference/tsbuildWatch/projectsBuilding/when-there-are-8-projects-in-a-solution.js b/tests/baselines/reference/tsbuildWatch/projectsBuilding/when-there-are-8-projects-in-a-solution.js index e7800c76107c7..99d6305dc9e2b 100644 --- a/tests/baselines/reference/tsbuildWatch/projectsBuilding/when-there-are-8-projects-in-a-solution.js +++ b/tests/baselines/reference/tsbuildWatch/projectsBuilding/when-there-are-8-projects-in-a-solution.js @@ -238,38 +238,38 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg7/index.ts (computed .d.ts during emit) FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: *new* - {} /user/username/projects/myproject/pkg0/index.ts: *new* {} -/user/username/projects/myproject/pkg1/tsconfig.json: *new* +/user/username/projects/myproject/pkg0/tsconfig.json: *new* {} /user/username/projects/myproject/pkg1/index.ts: *new* {} -/user/username/projects/myproject/pkg2/tsconfig.json: *new* +/user/username/projects/myproject/pkg1/tsconfig.json: *new* {} /user/username/projects/myproject/pkg2/index.ts: *new* {} -/user/username/projects/myproject/pkg3/tsconfig.json: *new* +/user/username/projects/myproject/pkg2/tsconfig.json: *new* {} /user/username/projects/myproject/pkg3/index.ts: *new* {} -/user/username/projects/myproject/pkg4/tsconfig.json: *new* +/user/username/projects/myproject/pkg3/tsconfig.json: *new* {} /user/username/projects/myproject/pkg4/index.ts: *new* {} -/user/username/projects/myproject/pkg5/tsconfig.json: *new* +/user/username/projects/myproject/pkg4/tsconfig.json: *new* {} /user/username/projects/myproject/pkg5/index.ts: *new* {} -/user/username/projects/myproject/pkg6/tsconfig.json: *new* +/user/username/projects/myproject/pkg5/tsconfig.json: *new* {} /user/username/projects/myproject/pkg6/index.ts: *new* {} -/user/username/projects/myproject/pkg7/tsconfig.json: *new* +/user/username/projects/myproject/pkg6/tsconfig.json: *new* {} /user/username/projects/myproject/pkg7/index.ts: *new* {} +/user/username/projects/myproject/pkg7/tsconfig.json: *new* + {} /user/username/projects/myproject/tsconfig.json: *new* {} diff --git a/tests/baselines/reference/tsbuildWatch/publicApi/with-custom-transformers.js b/tests/baselines/reference/tsbuildWatch/publicApi/with-custom-transformers.js index 596ed7c2ebb0b..e3283af7d6bf4 100644 --- a/tests/baselines/reference/tsbuildWatch/publicApi/with-custom-transformers.js +++ b/tests/baselines/reference/tsbuildWatch/publicApi/with-custom-transformers.js @@ -87,15 +87,15 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/webpack/index.ts (used version) FsWatches:: -/user/username/projects/myproject/shared/tsconfig.json: *new* - {} /user/username/projects/myproject/shared/index.ts: *new* {} -/user/username/projects/myproject/webpack/tsconfig.json: *new* +/user/username/projects/myproject/shared/tsconfig.json: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} /user/username/projects/myproject/webpack/index.ts: *new* {} -/user/username/projects/myproject/tsconfig.json: *new* +/user/username/projects/myproject/webpack/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js b/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js index 9aa7e998717d9..a554d80a2a285 100644 --- a/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js +++ b/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js @@ -131,24 +131,24 @@ PolledWatches:: {"pollingInterval":2000} FsWatches:: -/user/username/projects/reexport/src/pure/tsconfig.json: *new* +/user/username/projects/reexport/src/main/index.ts: *new* + {} +/user/username/projects/reexport/src/main/tsconfig.json: *new* {} /user/username/projects/reexport/src/pure/index.ts: *new* {} /user/username/projects/reexport/src/pure/session.ts: *new* {} -/user/username/projects/reexport/src/main/tsconfig.json: *new* - {} -/user/username/projects/reexport/src/main/index.ts: *new* +/user/username/projects/reexport/src/pure/tsconfig.json: *new* {} /user/username/projects/reexport/src/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/reexport/src/pure: *new* - {} /user/username/projects/reexport/src/main: *new* {} +/user/username/projects/reexport/src/pure: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects-with-single-watcher-per-file.js b/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects-with-single-watcher-per-file.js index 7f1a4ab5976d4..3ef79df1871c4 100644 --- a/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects-with-single-watcher-per-file.js +++ b/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects-with-single-watcher-per-file.js @@ -149,26 +149,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/typings/xterm.d.ts (used version) FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: *new* - {} /user/username/projects/myproject/pkg0/index.ts: *new* {} -/user/username/projects/myproject/typings/xterm.d.ts: *new* - {} -/user/username/projects/myproject/pkg1/tsconfig.json: *new* +/user/username/projects/myproject/pkg0/tsconfig.json: *new* {} /user/username/projects/myproject/pkg1/index.ts: *new* {} -/user/username/projects/myproject/pkg2/tsconfig.json: *new* +/user/username/projects/myproject/pkg1/tsconfig.json: *new* {} /user/username/projects/myproject/pkg2/index.ts: *new* {} -/user/username/projects/myproject/pkg3/tsconfig.json: *new* +/user/username/projects/myproject/pkg2/tsconfig.json: *new* {} /user/username/projects/myproject/pkg3/index.ts: *new* {} +/user/username/projects/myproject/pkg3/tsconfig.json: *new* + {} /user/username/projects/myproject/tsconfig.json: *new* {} +/user/username/projects/myproject/typings/xterm.d.ts: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: *new* @@ -339,28 +339,28 @@ Output:: FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} /user/username/projects/myproject/pkg0/index.ts: {} -/user/username/projects/myproject/typings/xterm.d.ts: - {} -/user/username/projects/myproject/pkg1/tsconfig.json: +/user/username/projects/myproject/pkg0/tsconfig.json: {} /user/username/projects/myproject/pkg1/index.ts: {} -/user/username/projects/myproject/pkg2/tsconfig.json: +/user/username/projects/myproject/pkg1/tsconfig.json: {} /user/username/projects/myproject/pkg2/index.ts: {} +/user/username/projects/myproject/pkg2/tsconfig.json: + {} /user/username/projects/myproject/tsconfig.json: {} +/user/username/projects/myproject/typings/xterm.d.ts: + {} FsWatches *deleted*:: -/user/username/projects/myproject/pkg3/tsconfig.json: - {} /user/username/projects/myproject/pkg3/index.ts: {} +/user/username/projects/myproject/pkg3/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -493,19 +493,19 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} /user/username/projects/myproject/pkg0/index.ts: {} -/user/username/projects/myproject/typings/xterm.d.ts: +/user/username/projects/myproject/pkg0/tsconfig.json: + {} +/user/username/projects/myproject/pkg1/index.ts: {} /user/username/projects/myproject/pkg1/tsconfig.json: {} -/user/username/projects/myproject/pkg1/index.ts: +/user/username/projects/myproject/pkg2/index.ts: {} /user/username/projects/myproject/pkg2/tsconfig.json: {} -/user/username/projects/myproject/pkg2/index.ts: +/user/username/projects/myproject/typings/xterm.d.ts: {} FsWatchesRecursive *deleted*:: diff --git a/tests/baselines/reference/tscWatch/consoleClearing/when-preserveWatchOutput-is-true-in-config-file/createWatchOfConfigFile.js b/tests/baselines/reference/tscWatch/consoleClearing/when-preserveWatchOutput-is-true-in-config-file/createWatchOfConfigFile.js index 7a09ae2429225..0c3d5a226cf83 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/when-preserveWatchOutput-is-true-in-config-file/createWatchOfConfigFile.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/when-preserveWatchOutput-is-true-in-config-file/createWatchOfConfigFile.js @@ -45,11 +45,11 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) FsWatches:: -/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /f.ts: *new* {} -/a/lib/lib.d.ts: *new* +/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/consoleClearing/when-preserveWatchOutput-is-true-in-config-file/when-createWatchProgram-is-invoked-with-configFileParseResult-on-WatchCompilerHostOfConfigFile.js b/tests/baselines/reference/tscWatch/consoleClearing/when-preserveWatchOutput-is-true-in-config-file/when-createWatchProgram-is-invoked-with-configFileParseResult-on-WatchCompilerHostOfConfigFile.js index 83690ce12eb5e..c22ec26bfca62 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/when-preserveWatchOutput-is-true-in-config-file/when-createWatchProgram-is-invoked-with-configFileParseResult-on-WatchCompilerHostOfConfigFile.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/when-preserveWatchOutput-is-true-in-config-file/when-createWatchProgram-is-invoked-with-configFileParseResult-on-WatchCompilerHostOfConfigFile.js @@ -44,11 +44,11 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) FsWatches:: -/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /f.ts: *new* {} -/a/lib/lib.d.ts: *new* +/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js b/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js index c468e45f4a70b..571c23df1f454 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js @@ -46,10 +46,10 @@ Shape signatures in builder refreshed for:: /f.ts (used version) FsWatches:: -/f.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/f.ts: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js b/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js index 033fa988be0d1..7cd6b2d1bbabf 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js @@ -48,10 +48,10 @@ Shape signatures in builder refreshed for:: /f.ts (used version) FsWatches:: -/f.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/f.ts: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js b/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js index 91935887be763..590711f349904 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js @@ -41,10 +41,10 @@ Shape signatures in builder refreshed for:: /f.ts (used version) FsWatches:: -/f.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/f.ts: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/consoleClearing/without---diagnostics-or---extendedDiagnostics.js b/tests/baselines/reference/tscWatch/consoleClearing/without---diagnostics-or---extendedDiagnostics.js index 8261a8a3b3a01..52baaf7ae6da4 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/without---diagnostics-or---extendedDiagnostics.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/without---diagnostics-or---extendedDiagnostics.js @@ -42,10 +42,10 @@ Shape signatures in builder refreshed for:: /f.ts (used version) FsWatches:: -/f.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/f.ts: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emit/emit-file-content/elides-const-enums-correctly-in-incremental-compilation.js b/tests/baselines/reference/tscWatch/emit/emit-file-content/elides-const-enums-correctly-in-incremental-compilation.js index c360f7958ecad..75a6f83f8868c 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-file-content/elides-const-enums-correctly-in-incremental-compilation.js +++ b/tests/baselines/reference/tscWatch/emit/emit-file-content/elides-const-enums-correctly-in-incremental-compilation.js @@ -54,13 +54,13 @@ Shape signatures in builder refreshed for:: /user/someone/projects/myproject/file3.ts (used version) FsWatches:: -/user/someone/projects/myproject/file3.ts: *new* - {} -/user/someone/projects/myproject/file2.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/someone/projects/myproject/file1.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/someone/projects/myproject/file2.ts: *new* + {} +/user/someone/projects/myproject/file3.ts: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emit/emit-file-content/file-is-deleted-and-created-as-part-of-change.js b/tests/baselines/reference/tscWatch/emit/emit-file-content/file-is-deleted-and-created-as-part-of-change.js index 47213d4740320..73e0861958696 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-file-content/file-is-deleted-and-created-as-part-of-change.js +++ b/tests/baselines/reference/tscWatch/emit/emit-file-content/file-is-deleted-and-created-as-part-of-change.js @@ -49,11 +49,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/username/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /home/username/project/app/file.ts: *new* {} -/a/lib/lib.d.ts: *new* +/home/username/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emit/emit-file-content/should-emit-specified-file.js b/tests/baselines/reference/tscWatch/emit/emit-file-content/should-emit-specified-file.js index 500784ce2d259..41e987efd3250 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-file-content/should-emit-specified-file.js +++ b/tests/baselines/reference/tscWatch/emit/emit-file-content/should-emit-specified-file.js @@ -57,14 +57,14 @@ Shape signatures in builder refreshed for:: /a/b/f3.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/f1.ts: *new* {} /a/b/f2.ts: *new* {} /a/b/f3.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-always-return-the-file-itself-if-'--isolatedModules'-is-specified.js b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-always-return-the-file-itself-if-'--isolatedModules'-is-specified.js index 8a860416b6d18..4d0a815805cbb 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-always-return-the-file-itself-if-'--isolatedModules'-is-specified.js +++ b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-always-return-the-file-itself-if-'--isolatedModules'-is-specified.js @@ -69,18 +69,18 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} -/a/b/modulefile1.ts: *new* - {} /a/b/file1consumer2.ts: *new* {} /a/b/globalfile3.ts: *new* {} +/a/b/modulefile1.ts: *new* + {} /a/b/modulefile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-always-return-the-file-itself-if-'--out'-or-'--outFile'-is-specified.js b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-always-return-the-file-itself-if-'--out'-or-'--outFile'-is-specified.js index 5da1b1dafb512..32d49e0437112 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-always-return-the-file-itself-if-'--out'-or-'--outFile'-is-specified.js +++ b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-always-return-the-file-itself-if-'--out'-or-'--outFile'-is-specified.js @@ -57,18 +57,18 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} -/a/b/modulefile1.ts: *new* - {} /a/b/file1consumer2.ts: *new* {} /a/b/globalfile3.ts: *new* {} +/a/b/modulefile1.ts: *new* + {} /a/b/modulefile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-be-up-to-date-with-deleted-files.js b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-be-up-to-date-with-deleted-files.js index ee64f941b4f09..e5a6c7552c417 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-be-up-to-date-with-deleted-files.js +++ b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-be-up-to-date-with-deleted-files.js @@ -69,18 +69,18 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} -/a/b/modulefile1.ts: *new* - {} /a/b/file1consumer2.ts: *new* {} /a/b/globalfile3.ts: *new* {} +/a/b/modulefile1.ts: *new* + {} /a/b/modulefile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -161,16 +161,16 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (computed .d.ts) FsWatches:: -/a/b/tsconfig.json: - {} /a/b/file1consumer1.ts: {} -/a/b/modulefile1.ts: - {} /a/b/globalfile3.ts: {} +/a/b/modulefile1.ts: + {} /a/b/modulefile2.ts: {} +/a/b/tsconfig.json: + {} /a/lib/lib.d.ts: {} diff --git a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-be-up-to-date-with-newly-created-files.js b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-be-up-to-date-with-newly-created-files.js index 8882c3045cddb..0fb2970c96fd8 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-be-up-to-date-with-newly-created-files.js +++ b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-be-up-to-date-with-newly-created-files.js @@ -69,18 +69,18 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} -/a/b/modulefile1.ts: *new* - {} /a/b/file1consumer2.ts: *new* {} /a/b/globalfile3.ts: *new* {} +/a/b/modulefile1.ts: *new* + {} /a/b/modulefile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -169,21 +169,21 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (computed .d.ts) FsWatches:: -/a/b/tsconfig.json: - {} /a/b/file1consumer1.ts: {} -/a/b/modulefile1.ts: - {} /a/b/file1consumer2.ts: {} +/a/b/file1consumer3.ts: *new* + {} /a/b/globalfile3.ts: {} +/a/b/modulefile1.ts: + {} /a/b/modulefile2.ts: {} -/a/lib/lib.d.ts: +/a/b/tsconfig.json: {} -/a/b/file1consumer3.ts: *new* +/a/lib/lib.d.ts: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-be-up-to-date-with-the-reference-map-changes.js b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-be-up-to-date-with-the-reference-map-changes.js index cc4c1ef00c8cb..b7866df086921 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-be-up-to-date-with-the-reference-map-changes.js +++ b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-be-up-to-date-with-the-reference-map-changes.js @@ -69,18 +69,18 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} -/a/b/modulefile1.ts: *new* - {} /a/b/file1consumer2.ts: *new* {} /a/b/globalfile3.ts: *new* {} +/a/b/modulefile1.ts: *new* + {} /a/b/modulefile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-contains-only-itself-if-a-module-file's-shape-didn't-change,-and-all-files-referencing-it-if-its-shape-changed.js b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-contains-only-itself-if-a-module-file's-shape-didn't-change,-and-all-files-referencing-it-if-its-shape-changed.js index 617e45097bb52..a2fdbd6b7ecee 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-contains-only-itself-if-a-module-file's-shape-didn't-change,-and-all-files-referencing-it-if-its-shape-changed.js +++ b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-contains-only-itself-if-a-module-file's-shape-didn't-change,-and-all-files-referencing-it-if-its-shape-changed.js @@ -69,18 +69,18 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} -/a/b/modulefile1.ts: *new* - {} /a/b/file1consumer2.ts: *new* {} /a/b/globalfile3.ts: *new* {} +/a/b/modulefile1.ts: *new* + {} /a/b/modulefile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-detect-changes-in-non-root-files.js b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-detect-changes-in-non-root-files.js index 1a86dd0153054..141d77ae66718 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-detect-changes-in-non-root-files.js +++ b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-detect-changes-in-non-root-files.js @@ -60,12 +60,12 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} /a/b/modulefile1.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-detect-non-existing-code-file.js b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-detect-non-existing-code-file.js index 5c6bde2fa67f1..c6ba6ca578f49 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-detect-non-existing-code-file.js +++ b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-detect-non-existing-code-file.js @@ -60,10 +60,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/referencefile1.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -153,10 +153,10 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: - {} /a/b/referencefile1.ts: {} +/a/b/tsconfig.json: + {} /a/lib/lib.d.ts: {} @@ -202,13 +202,13 @@ Shape signatures in builder refreshed for:: /a/b/referencefile1.ts (computed .d.ts) FsWatches:: -/a/b/tsconfig.json: +/a/b/modulefile2.ts: *new* {} /a/b/referencefile1.ts: {} -/a/lib/lib.d.ts: +/a/b/tsconfig.json: {} -/a/b/modulefile2.ts: *new* +/a/lib/lib.d.ts: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-detect-removed-code-file.js b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-detect-removed-code-file.js index 5f381d655ad63..c3872f2b08a03 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-detect-removed-code-file.js +++ b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-detect-removed-code-file.js @@ -57,12 +57,12 @@ Shape signatures in builder refreshed for:: /a/b/referencefile1.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/modulefile1.ts: *new* {} /a/b/referencefile1.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -134,10 +134,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: - {} /a/b/referencefile1.ts: {} +/a/b/tsconfig.json: + {} /a/lib/lib.d.ts: {} diff --git a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-return-all-files-if-a-global-file-changed-shape.js b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-return-all-files-if-a-global-file-changed-shape.js index 3882e09d09704..8b9f958ff346f 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-return-all-files-if-a-global-file-changed-shape.js +++ b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-return-all-files-if-a-global-file-changed-shape.js @@ -69,18 +69,18 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} -/a/b/modulefile1.ts: *new* - {} /a/b/file1consumer2.ts: *new* {} /a/b/globalfile3.ts: *new* {} +/a/b/modulefile1.ts: *new* + {} /a/b/modulefile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-return-cascaded-affected-file-list.js b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-return-cascaded-affected-file-list.js index 7aeb330a05862..7fb05f724819a 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-return-cascaded-affected-file-list.js +++ b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-return-cascaded-affected-file-list.js @@ -75,20 +75,20 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} -/a/b/modulefile1.ts: *new* - {} /a/b/file1consumer1consumer1.ts: *new* {} /a/b/file1consumer2.ts: *new* {} /a/b/globalfile3.ts: *new* {} +/a/b/modulefile1.ts: *new* + {} /a/b/modulefile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-work-fine-for-files-with-circular-references.js b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-work-fine-for-files-with-circular-references.js index 5246dc0fa0434..f97dbdb45d616 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-work-fine-for-files-with-circular-references.js +++ b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-work-fine-for-files-with-circular-references.js @@ -53,12 +53,12 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1.ts: *new* {} /a/b/file2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/config-does-not-have-out-or-outFile.js b/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/config-does-not-have-out-or-outFile.js index a594792e5249d..13fdb875070c6 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/config-does-not-have-out-or-outFile.js +++ b/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/config-does-not-have-out-or-outFile.js @@ -51,14 +51,14 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) FsWatches:: -/a/tsconfig.json: *new* - {} /a/a.ts: *new* {} /a/b.ts: *new* {} /a/lib/lib.d.ts: *new* {} +/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /a: *new* diff --git a/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/config-has-out.js b/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/config-has-out.js index 6f63fffa86901..971d39fbf23a7 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/config-has-out.js +++ b/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/config-has-out.js @@ -51,14 +51,14 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: FsWatches:: -/a/tsconfig.json: *new* - {} /a/a.ts: *new* {} /a/b.ts: *new* {} /a/lib/lib.d.ts: *new* {} +/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /a: *new* diff --git a/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/config-has-outFile.js b/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/config-has-outFile.js index 6c527f315f434..778eba542faa9 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/config-has-outFile.js +++ b/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/config-has-outFile.js @@ -45,14 +45,14 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: FsWatches:: -/a/tsconfig.json: *new* - {} /a/a.ts: *new* {} /a/b.ts: *new* {} /a/lib/lib.d.ts: *new* {} +/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /a: *new* diff --git a/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/with---outFile-and-multiple-declaration-files-in-the-program.js b/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/with---outFile-and-multiple-declaration-files-in-the-program.js index 2cd2b14b97546..a4bc0546003f0 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/with---outFile-and-multiple-declaration-files-in-the-program.js +++ b/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/with---outFile-and-multiple-declaration-files-in-the-program.js @@ -62,16 +62,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/project/tsconfig.json: *new* +/a/b/dependencies/file2.d.ts: *new* {} /a/b/output/anotherdependency/file1.d.ts: *new* {} -/a/b/dependencies/file2.d.ts: *new* - {} /a/b/project/src/main.ts: *new* {} /a/b/project/src/main2.ts: *new* {} +/a/b/project/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/without---outFile-and-multiple-declaration-files-in-the-program.js b/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/without---outFile-and-multiple-declaration-files-in-the-program.js index a3f6a5f5f6422..3966eedbd1964 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/without---outFile-and-multiple-declaration-files-in-the-program.js +++ b/tests/baselines/reference/tscWatch/emit/emit-with-outFile-or-out-setting/without---outFile-and-multiple-declaration-files-in-the-program.js @@ -72,16 +72,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/project/tsconfig.json: *new* +/a/b/dependencies/file2.d.ts: *new* {} /a/b/output/anotherdependency/file1.d.ts: *new* {} -/a/b/dependencies/file2.d.ts: *new* - {} /a/b/project/src/main.ts: *new* {} /a/b/project/src/main2.ts: *new* {} +/a/b/project/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/emit/when-module-emit-is-specified-as-node/when-instead-of-filechanged-recursive-directory-watcher-is-invoked.js b/tests/baselines/reference/tscWatch/emit/when-module-emit-is-specified-as-node/when-instead-of-filechanged-recursive-directory-watcher-is-invoked.js index d48c856e66fac..062971706bbe7 100644 --- a/tests/baselines/reference/tscWatch/emit/when-module-emit-is-specified-as-node/when-instead-of-filechanged-recursive-directory-watcher-is-invoked.js +++ b/tests/baselines/reference/tscWatch/emit/when-module-emit-is-specified-as-node/when-instead-of-filechanged-recursive-directory-watcher-is-invoked.js @@ -55,13 +55,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/rootfolder/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /a/rootfolder/project/scripts/javascript.js: *new* {} /a/rootfolder/project/scripts/typescript.ts: *new* {} -/a/lib/lib.d.ts: *new* +/a/rootfolder/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/errors-for-.d.ts-change-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/errors-for-.d.ts-change-with-incremental.js index a8262c5eafcdf..e7a01398a3e67 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/errors-for-.d.ts-change-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/errors-for-.d.ts-change-with-incremental.js @@ -73,17 +73,17 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/a.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} /user/username/projects/myproject/b.d.ts: *new* {} /user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/errors-for-.d.ts-change.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/errors-for-.d.ts-change.js index c9b39206f7e20..c443c49bab0b8 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/errors-for-.d.ts-change.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/errors-for-.d.ts-change.js @@ -73,17 +73,17 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/a.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} /user/username/projects/myproject/b.d.ts: *new* {} /user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/errors-for-.ts-change-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/errors-for-.ts-change-with-incremental.js index e30b410f98684..21fce9a4b81e5 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/errors-for-.ts-change-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/errors-for-.ts-change-with-incremental.js @@ -73,7 +73,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -81,7 +81,7 @@ FsWatches:: {} /user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/errors-for-.ts-change.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/errors-for-.ts-change.js index a9d2b32bdbd1a..6f60110ec93af 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/errors-for-.ts-change.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/deepImportChanges/errors-for-.ts-change.js @@ -73,7 +73,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -81,7 +81,7 @@ FsWatches:: {} /user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js index d7ff5d3f9112d..4e2c663ace7cc 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js @@ -110,7 +110,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -122,7 +122,7 @@ FsWatches:: {} /user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/file-not-exporting-a-deep-multilevel-import-that-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/file-not-exporting-a-deep-multilevel-import-that-changes.js index 12cfd4243bd06..f062cfbe66564 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/file-not-exporting-a-deep-multilevel-import-that-changes.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/file-not-exporting-a-deep-multilevel-import-that-changes.js @@ -110,7 +110,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -122,7 +122,7 @@ FsWatches:: {} /user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/transitive-exports/no-circular-import/export-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/transitive-exports/no-circular-import/export-with-incremental.js index cdcfe65fac03c..86452a705ff5d 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/transitive-exports/no-circular-import/export-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/transitive-exports/no-circular-import/export-with-incremental.js @@ -96,21 +96,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/data.ts: *new* + {} +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/transitive-exports/no-circular-import/export.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/transitive-exports/no-circular-import/export.js index ec77e72ff0477..ecb691fb0d7d8 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/transitive-exports/no-circular-import/export.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/transitive-exports/no-circular-import/export.js @@ -96,21 +96,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/data.ts: *new* + {} +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/transitive-exports/yes-circular-import/exports-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/transitive-exports/yes-circular-import/exports-with-incremental.js index 47e44b3b241f9..0a33e4712a6f9 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/transitive-exports/yes-circular-import/exports-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/transitive-exports/yes-circular-import/exports-with-incremental.js @@ -105,23 +105,23 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} +/user/username/projects/myproject/lib2/data.ts: *new* + {} /user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/transitive-exports/yes-circular-import/exports.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/transitive-exports/yes-circular-import/exports.js index 0c9997397e1d0..1b2fc0c65cbfc 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/transitive-exports/yes-circular-import/exports.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/transitive-exports/yes-circular-import/exports.js @@ -105,23 +105,23 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} +/user/username/projects/myproject/lib2/data.ts: *new* + {} /user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError-with-incremental.js index dd4b12837aeec..a301f54b480f2 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError-with-incremental.js @@ -76,13 +76,13 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/noemitonerror/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/noemitonerror/shared/types/db.ts: *new* {} @@ -90,7 +90,7 @@ FsWatches:: {} /user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/noemitonerror/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js index 4e15c60fcb308..17cbf7c76ad04 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js @@ -76,13 +76,13 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/noemitonerror/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/noemitonerror/shared/types/db.ts: *new* {} @@ -90,7 +90,7 @@ FsWatches:: {} /user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/noemitonerror/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/errors-for-.d.ts-change-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/errors-for-.d.ts-change-with-incremental.js index d65c5765a60fd..358457410ffc9 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/errors-for-.d.ts-change-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/errors-for-.d.ts-change-with-incremental.js @@ -73,17 +73,17 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/a.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} /user/username/projects/myproject/b.d.ts: *new* {} /user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/errors-for-.d.ts-change.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/errors-for-.d.ts-change.js index 0e665b1123e4c..51a9838542c72 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/errors-for-.d.ts-change.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/errors-for-.d.ts-change.js @@ -73,17 +73,17 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/a.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} /user/username/projects/myproject/b.d.ts: *new* {} /user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/errors-for-.ts-change-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/errors-for-.ts-change-with-incremental.js index 02ba147a881e4..d1914768384bd 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/errors-for-.ts-change-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/errors-for-.ts-change-with-incremental.js @@ -73,7 +73,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -81,7 +81,7 @@ FsWatches:: {} /user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/errors-for-.ts-change.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/errors-for-.ts-change.js index 97dfebc4d1f56..d9d2741440266 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/errors-for-.ts-change.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/deepImportChanges/errors-for-.ts-change.js @@ -73,7 +73,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -81,7 +81,7 @@ FsWatches:: {} /user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js index 64d940a550e6e..47bb3c9dd331f 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js @@ -110,7 +110,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -122,7 +122,7 @@ FsWatches:: {} /user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/file-not-exporting-a-deep-multilevel-import-that-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/file-not-exporting-a-deep-multilevel-import-that-changes.js index 18b654e9f99d3..49d7a8f96611f 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/file-not-exporting-a-deep-multilevel-import-that-changes.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/file-not-exporting-a-deep-multilevel-import-that-changes.js @@ -110,7 +110,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -122,7 +122,7 @@ FsWatches:: {} /user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/transitive-exports/no-circular-import/export-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/transitive-exports/no-circular-import/export-with-incremental.js index 1f41243199d73..c7f272a24aa30 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/transitive-exports/no-circular-import/export-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/transitive-exports/no-circular-import/export-with-incremental.js @@ -96,21 +96,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/data.ts: *new* + {} +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/transitive-exports/no-circular-import/export.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/transitive-exports/no-circular-import/export.js index df31c9dd28c25..4547b82ae1794 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/transitive-exports/no-circular-import/export.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/transitive-exports/no-circular-import/export.js @@ -96,21 +96,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/data.ts: *new* + {} +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/transitive-exports/yes-circular-import/exports-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/transitive-exports/yes-circular-import/exports-with-incremental.js index 77701524756a4..3981520b92539 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/transitive-exports/yes-circular-import/exports-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/transitive-exports/yes-circular-import/exports-with-incremental.js @@ -105,23 +105,23 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} +/user/username/projects/myproject/lib2/data.ts: *new* + {} /user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/transitive-exports/yes-circular-import/exports.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/transitive-exports/yes-circular-import/exports.js index a7f65c4d799e2..8e309d66b3c70 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/transitive-exports/yes-circular-import/exports.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/transitive-exports/yes-circular-import/exports.js @@ -105,23 +105,23 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} +/user/username/projects/myproject/lib2/data.ts: *new* + {} /user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError-with-incremental.js index 173b59d76fd45..f5ddd97ff4dad 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError-with-incremental.js @@ -76,13 +76,13 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/noemitonerror/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/noemitonerror/shared/types/db.ts: *new* {} @@ -90,7 +90,7 @@ FsWatches:: {} /user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/noemitonerror/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js index b88fbffad2955..2e46763e10775 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js @@ -76,13 +76,13 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/noemitonerror/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/noemitonerror/shared/types/db.ts: *new* {} @@ -90,7 +90,7 @@ FsWatches:: {} /user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/noemitonerror/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/errors-for-.d.ts-change-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/errors-for-.d.ts-change-with-incremental.js index 640b189abfb95..c046757d74622 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/errors-for-.d.ts-change-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/errors-for-.d.ts-change-with-incremental.js @@ -73,17 +73,17 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/a.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} /user/username/projects/myproject/b.d.ts: *new* {} /user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/errors-for-.d.ts-change.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/errors-for-.d.ts-change.js index 26f1c24b4d2d6..eda8dcd5a2ab4 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/errors-for-.d.ts-change.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/errors-for-.d.ts-change.js @@ -73,17 +73,17 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/a.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} /user/username/projects/myproject/b.d.ts: *new* {} /user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/errors-for-.ts-change-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/errors-for-.ts-change-with-incremental.js index 669e9884d1f72..aef3c82b4e3ac 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/errors-for-.ts-change-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/errors-for-.ts-change-with-incremental.js @@ -73,7 +73,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -81,7 +81,7 @@ FsWatches:: {} /user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/errors-for-.ts-change.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/errors-for-.ts-change.js index d816793d35ff8..0da476d57e710 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/errors-for-.ts-change.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/deepImportChanges/errors-for-.ts-change.js @@ -73,7 +73,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -81,7 +81,7 @@ FsWatches:: {} /user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js index 2e3f4afbdc6a7..c7757179fd00e 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js @@ -110,7 +110,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -122,7 +122,7 @@ FsWatches:: {} /user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/file-not-exporting-a-deep-multilevel-import-that-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/file-not-exporting-a-deep-multilevel-import-that-changes.js index 87d0db25916cb..3791b1cba47e9 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/file-not-exporting-a-deep-multilevel-import-that-changes.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/file-not-exporting-a-deep-multilevel-import-that-changes.js @@ -110,7 +110,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -122,7 +122,7 @@ FsWatches:: {} /user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/transitive-exports/no-circular-import/export-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/transitive-exports/no-circular-import/export-with-incremental.js index 80af7bd50ca91..06c82cfa9676b 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/transitive-exports/no-circular-import/export-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/transitive-exports/no-circular-import/export-with-incremental.js @@ -96,21 +96,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/data.ts: *new* + {} +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/transitive-exports/no-circular-import/export.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/transitive-exports/no-circular-import/export.js index 8821ee1ba73b8..a11ecb0a62798 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/transitive-exports/no-circular-import/export.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/transitive-exports/no-circular-import/export.js @@ -96,21 +96,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/data.ts: *new* + {} +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/transitive-exports/yes-circular-import/exports-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/transitive-exports/yes-circular-import/exports-with-incremental.js index 54648a17aaaaa..39908a0fa4990 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/transitive-exports/yes-circular-import/exports-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/transitive-exports/yes-circular-import/exports-with-incremental.js @@ -105,23 +105,23 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} +/user/username/projects/myproject/lib2/data.ts: *new* + {} /user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/transitive-exports/yes-circular-import/exports.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/transitive-exports/yes-circular-import/exports.js index dc7ab3c374fa9..a3afffd502808 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/transitive-exports/yes-circular-import/exports.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/transitive-exports/yes-circular-import/exports.js @@ -105,23 +105,23 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} +/user/username/projects/myproject/lib2/data.ts: *new* + {} /user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError-with-incremental.js index c4ae99b68662b..50329dcd68e2a 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError-with-incremental.js @@ -76,13 +76,13 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/noemitonerror/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/noemitonerror/shared/types/db.ts: *new* {} @@ -90,7 +90,7 @@ FsWatches:: {} /user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/noemitonerror/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js index 27dff7584ac24..9427ea78d6c72 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js @@ -76,13 +76,13 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/noemitonerror/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/noemitonerror/shared/types/db.ts: *new* {} @@ -90,7 +90,7 @@ FsWatches:: {} /user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/noemitonerror/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/errors-for-.d.ts-change-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/errors-for-.d.ts-change-with-incremental.js index a597399df5e5a..3ca618bad2291 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/errors-for-.d.ts-change-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/errors-for-.d.ts-change-with-incremental.js @@ -73,17 +73,17 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/a.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} /user/username/projects/myproject/b.d.ts: *new* {} /user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/errors-for-.d.ts-change.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/errors-for-.d.ts-change.js index 08c226bcc1274..8342b4f58526e 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/errors-for-.d.ts-change.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/errors-for-.d.ts-change.js @@ -73,17 +73,17 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/a.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} /user/username/projects/myproject/b.d.ts: *new* {} /user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/errors-for-.ts-change-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/errors-for-.ts-change-with-incremental.js index 2743fe8406a33..a69a229c21739 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/errors-for-.ts-change-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/errors-for-.ts-change-with-incremental.js @@ -73,7 +73,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -81,7 +81,7 @@ FsWatches:: {} /user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/errors-for-.ts-change.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/errors-for-.ts-change.js index b9e999d38100c..b3b1fa0116f88 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/errors-for-.ts-change.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/deepImportChanges/errors-for-.ts-change.js @@ -73,7 +73,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -81,7 +81,7 @@ FsWatches:: {} /user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js index 611e17d94832a..dcb9be67d3ef4 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js @@ -110,7 +110,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -122,7 +122,7 @@ FsWatches:: {} /user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/file-not-exporting-a-deep-multilevel-import-that-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/file-not-exporting-a-deep-multilevel-import-that-changes.js index 3cf5088e137c7..f3f4c6212fbc0 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/file-not-exporting-a-deep-multilevel-import-that-changes.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/file-not-exporting-a-deep-multilevel-import-that-changes.js @@ -110,7 +110,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -122,7 +122,7 @@ FsWatches:: {} /user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/transitive-exports/no-circular-import/export-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/transitive-exports/no-circular-import/export-with-incremental.js index 6546b4bfa136e..95b44e78c5b49 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/transitive-exports/no-circular-import/export-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/transitive-exports/no-circular-import/export-with-incremental.js @@ -96,21 +96,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/data.ts: *new* + {} +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/transitive-exports/no-circular-import/export.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/transitive-exports/no-circular-import/export.js index a8bc1d8bf6b1e..37e1cf3705aee 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/transitive-exports/no-circular-import/export.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/transitive-exports/no-circular-import/export.js @@ -96,21 +96,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/data.ts: *new* + {} +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/transitive-exports/yes-circular-import/exports-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/transitive-exports/yes-circular-import/exports-with-incremental.js index 05c66cb03dfdd..5c7c7c6fb774e 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/transitive-exports/yes-circular-import/exports-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/transitive-exports/yes-circular-import/exports-with-incremental.js @@ -105,23 +105,23 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} +/user/username/projects/myproject/lib2/data.ts: *new* + {} /user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/transitive-exports/yes-circular-import/exports.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/transitive-exports/yes-circular-import/exports.js index 3bd5596187618..1c618a25f64c6 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/transitive-exports/yes-circular-import/exports.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/transitive-exports/yes-circular-import/exports.js @@ -105,23 +105,23 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} +/user/username/projects/myproject/lib2/data.ts: *new* + {} /user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError-with-incremental.js index 64b1fd83b6665..1f3cb9181b94b 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError-with-incremental.js @@ -76,13 +76,13 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/noemitonerror/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/noemitonerror/shared/types/db.ts: *new* {} @@ -90,7 +90,7 @@ FsWatches:: {} /user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/noemitonerror/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js index 1edc972e1a7f7..0dff01fb8c424 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js @@ -76,13 +76,13 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/noemitonerror/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/noemitonerror/shared/types/db.ts: *new* {} @@ -90,7 +90,7 @@ FsWatches:: {} /user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/noemitonerror/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/errors-for-.d.ts-change-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/errors-for-.d.ts-change-with-incremental.js index de3819e5ea430..bdba34066af73 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/errors-for-.d.ts-change-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/errors-for-.d.ts-change-with-incremental.js @@ -73,17 +73,17 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/a.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} /user/username/projects/myproject/b.d.ts: *new* {} /user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/errors-for-.d.ts-change.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/errors-for-.d.ts-change.js index b5d627d1f04b6..a75fee9f36391 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/errors-for-.d.ts-change.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/errors-for-.d.ts-change.js @@ -73,17 +73,17 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/a.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} /user/username/projects/myproject/b.d.ts: *new* {} /user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/errors-for-.ts-change-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/errors-for-.ts-change-with-incremental.js index 97d5c3ac3feb6..9536e8fc2b0b0 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/errors-for-.ts-change-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/errors-for-.ts-change-with-incremental.js @@ -73,7 +73,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -81,7 +81,7 @@ FsWatches:: {} /user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/errors-for-.ts-change.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/errors-for-.ts-change.js index 9c714f279c0bd..e293ab972893e 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/errors-for-.ts-change.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/deepImportChanges/errors-for-.ts-change.js @@ -73,7 +73,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -81,7 +81,7 @@ FsWatches:: {} /user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js index c14cf19284007..c5597dabf0e17 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js @@ -110,7 +110,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -122,7 +122,7 @@ FsWatches:: {} /user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/file-not-exporting-a-deep-multilevel-import-that-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/file-not-exporting-a-deep-multilevel-import-that-changes.js index 8c6c9cf008a0c..5d4bd9ba1da2e 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/file-not-exporting-a-deep-multilevel-import-that-changes.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/file-not-exporting-a-deep-multilevel-import-that-changes.js @@ -110,7 +110,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -122,7 +122,7 @@ FsWatches:: {} /user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/transitive-exports/no-circular-import/export-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/transitive-exports/no-circular-import/export-with-incremental.js index eecc9f1f05d08..e9ae1e26642e3 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/transitive-exports/no-circular-import/export-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/transitive-exports/no-circular-import/export-with-incremental.js @@ -96,21 +96,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/data.ts: *new* + {} +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/transitive-exports/no-circular-import/export.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/transitive-exports/no-circular-import/export.js index e265fc6147047..fcc01ad2d02de 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/transitive-exports/no-circular-import/export.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/transitive-exports/no-circular-import/export.js @@ -96,21 +96,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/data.ts: *new* + {} +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/transitive-exports/yes-circular-import/exports-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/transitive-exports/yes-circular-import/exports-with-incremental.js index d2df511ed7a1b..cfe2b09d30971 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/transitive-exports/yes-circular-import/exports-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/transitive-exports/yes-circular-import/exports-with-incremental.js @@ -105,23 +105,23 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} +/user/username/projects/myproject/lib2/data.ts: *new* + {} /user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/transitive-exports/yes-circular-import/exports.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/transitive-exports/yes-circular-import/exports.js index 2b51beeb54899..78ba049e90d1f 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/transitive-exports/yes-circular-import/exports.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/transitive-exports/yes-circular-import/exports.js @@ -105,23 +105,23 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} +/user/username/projects/myproject/lib2/data.ts: *new* + {} /user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError-with-incremental.js index de9b896a2ab92..0047b1011092c 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError-with-incremental.js @@ -76,13 +76,13 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/noemitonerror/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/noemitonerror/shared/types/db.ts: *new* {} @@ -90,7 +90,7 @@ FsWatches:: {} /user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/noemitonerror/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js index ac1ab79cf3bb4..2166ed50d0a2e 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js @@ -76,13 +76,13 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/noemitonerror/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/noemitonerror/shared/types/db.ts: *new* {} @@ -90,7 +90,7 @@ FsWatches:: {} /user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/noemitonerror/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/errors-for-.d.ts-change-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/errors-for-.d.ts-change-with-incremental.js index 77b8042f1da01..88cfeff243936 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/errors-for-.d.ts-change-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/errors-for-.d.ts-change-with-incremental.js @@ -73,17 +73,17 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/a.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} /user/username/projects/myproject/b.d.ts: *new* {} /user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/errors-for-.d.ts-change.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/errors-for-.d.ts-change.js index 556c9e9375eae..bd952f1e14a2b 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/errors-for-.d.ts-change.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/errors-for-.d.ts-change.js @@ -73,17 +73,17 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/a.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} /user/username/projects/myproject/b.d.ts: *new* {} /user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/errors-for-.ts-change-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/errors-for-.ts-change-with-incremental.js index 2309f44ef521b..c0bfc03ed59fe 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/errors-for-.ts-change-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/errors-for-.ts-change-with-incremental.js @@ -73,7 +73,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -81,7 +81,7 @@ FsWatches:: {} /user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/errors-for-.ts-change.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/errors-for-.ts-change.js index dff28b12b0c74..6cb70042cd437 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/errors-for-.ts-change.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/deepImportChanges/errors-for-.ts-change.js @@ -73,7 +73,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -81,7 +81,7 @@ FsWatches:: {} /user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js index 91d12231a8daa..fa96b4d61db67 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/file-not-exporting-a-deep-multilevel-import-that-changes-with-incremental.js @@ -110,7 +110,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -122,7 +122,7 @@ FsWatches:: {} /user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/file-not-exporting-a-deep-multilevel-import-that-changes.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/file-not-exporting-a-deep-multilevel-import-that-changes.js index a9ef29712e7d3..425ea8279d31a 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/file-not-exporting-a-deep-multilevel-import-that-changes.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/file-not-exporting-a-deep-multilevel-import-that-changes.js @@ -110,7 +110,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -122,7 +122,7 @@ FsWatches:: {} /user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/transitive-exports/no-circular-import/export-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/transitive-exports/no-circular-import/export-with-incremental.js index 6058d367a7ba0..1c22190a1c05a 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/transitive-exports/no-circular-import/export-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/transitive-exports/no-circular-import/export-with-incremental.js @@ -96,21 +96,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/data.ts: *new* + {} +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/transitive-exports/no-circular-import/export.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/transitive-exports/no-circular-import/export.js index cb41d856e295c..0d893d60675fb 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/transitive-exports/no-circular-import/export.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/transitive-exports/no-circular-import/export.js @@ -96,21 +96,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/data.ts: *new* + {} +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/transitive-exports/yes-circular-import/exports-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/transitive-exports/yes-circular-import/exports-with-incremental.js index c1ff892e4f058..b4a046225daf5 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/transitive-exports/yes-circular-import/exports-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/transitive-exports/yes-circular-import/exports-with-incremental.js @@ -105,23 +105,23 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} +/user/username/projects/myproject/lib2/data.ts: *new* + {} /user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/transitive-exports/yes-circular-import/exports.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/transitive-exports/yes-circular-import/exports.js index b7f9128409f22..1f031ad5ae335 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/transitive-exports/yes-circular-import/exports.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/transitive-exports/yes-circular-import/exports.js @@ -105,23 +105,23 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: *new* - {} -/user/username/projects/myproject/lib2/data.ts: *new* - {} /user/username/projects/myproject/lib1/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/public.ts: *new* {} /user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} +/user/username/projects/myproject/lib2/data.ts: *new* + {} /user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib2/public.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError-with-incremental.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError-with-incremental.js index 96c64e5de15a8..1ca7f2d8ca75e 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError-with-incremental.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError-with-incremental.js @@ -76,13 +76,13 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/noemitonerror/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/noemitonerror/shared/types/db.ts: *new* {} @@ -90,7 +90,7 @@ FsWatches:: {} /user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/noemitonerror/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js index 5f513188ad38d..59f500e53c262 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js @@ -76,13 +76,13 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/noemitonerror/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/noemitonerror/shared/types/db.ts: *new* {} @@ -90,7 +90,7 @@ FsWatches:: {} /user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/noemitonerror/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/jsxImportSource-option-changed.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/jsxImportSource-option-changed.js index a1ea0a0ae31aa..60456324fb449 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/jsxImportSource-option-changed.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/jsxImportSource-option-changed.js @@ -85,16 +85,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/node_modules/react/jsx-runtime/index.d.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/index.tsx: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/node_modules/react/jsx-runtime/index.d.ts: *new* {} /user/username/projects/myproject/node_modules/react/package.json: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: *new* diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/package-json-is-looked-up-for-file.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/package-json-is-looked-up-for-file.js index ab9a20f76bb52..ccea906a266e5 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/package-json-is-looked-up-for-file.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/package-json-is-looked-up-for-file.js @@ -81,32 +81,32 @@ Shape signatures in builder refreshed for:: /users/name/projects/lib-boilerplate/test/basic.spec.ts (used version) PolledWatches:: +/users/name/projects/lib-boilerplate/node_modules/@types: *new* + {"pollingInterval":500} /users/name/projects/lib-boilerplate/src/package.json: *new* {"pollingInterval":2000} /users/name/projects/lib-boilerplate/test/package.json: *new* {"pollingInterval":2000} -/users/name/projects/lib-boilerplate/node_modules/@types: *new* - {"pollingInterval":500} /users/name/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/name/projects/lib-boilerplate/tsconfig.json: *new* +/a/lib/lib.es2021.full.d.ts: *new* + {} +/users/name/projects/lib-boilerplate/package.json: *new* {} /users/name/projects/lib-boilerplate/src/index.ts: *new* {} /users/name/projects/lib-boilerplate/test/basic.spec.ts: *new* {} -/a/lib/lib.es2021.full.d.ts: *new* - {} -/users/name/projects/lib-boilerplate/package.json: *new* +/users/name/projects/lib-boilerplate/tsconfig.json: *new* {} FsWatchesRecursive:: -/users/name/projects/lib-boilerplate/test: *new* - {} /users/name/projects/lib-boilerplate: *new* {} +/users/name/projects/lib-boilerplate/test: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/self-name-package-reference.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/self-name-package-reference.js index 13961102a6746..aaf89bd7e7f9d 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/self-name-package-reference.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/self-name-package-reference.js @@ -69,20 +69,20 @@ Shape signatures in builder refreshed for:: /users/name/projects/web/index.ts (computed .d.ts during emit) PolledWatches:: -/users/name/projects/web/node_modules/@types: *new* - {"pollingInterval":500} /users/name/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/name/projects/web/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/name/projects/web/tsconfig.json: *new* +/a/lib/lib.esnext.full.d.ts: *new* {} /users/name/projects/web/index.ts: *new* {} -/a/lib/lib.esnext.full.d.ts: *new* - {} /users/name/projects/web/package.json: *new* {} +/users/name/projects/web/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/name/projects/web: *new* diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-Windows-style-drive-root-is-lowercase.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-Windows-style-drive-root-is-lowercase.js index c9445256b42a1..f77e12df532bc 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-Windows-style-drive-root-is-lowercase.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-Windows-style-drive-root-is-lowercase.js @@ -71,13 +71,13 @@ c:/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -c:/project/tsconfig.json: *new* +c:/a/lib/lib.d.ts: *new* {} c:/project/a.ts: *new* {} c:/project/b.ts: *new* {} -c:/a/lib/lib.d.ts: *new* +c:/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-Windows-style-drive-root-is-uppercase.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-Windows-style-drive-root-is-uppercase.js index 745dcc7a2ba36..90dc5a513e600 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-Windows-style-drive-root-is-uppercase.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-Windows-style-drive-root-is-uppercase.js @@ -71,13 +71,13 @@ c:/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -c:/project/tsconfig.json: *new* +c:/a/lib/lib.d.ts: *new* {} c:/project/a.ts: *new* {} c:/project/b.ts: *new* {} -c:/a/lib/lib.d.ts: *new* +c:/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-both-directory-symlink-target-and-import-match-disk.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-both-directory-symlink-target-and-import-match-disk.js index 6e4e6542bd3c6..55f54601cec63 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-both-directory-symlink-target-and-import-match-disk.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-both-directory-symlink-target-and-import-match-disk.js @@ -70,15 +70,15 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/xy/a.ts: *new* - {} /user/username/projects/myproject/link/a.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* + {} +/user/username/projects/myproject/xy/a.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-both-file-symlink-target-and-import-match-disk.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-both-file-symlink-target-and-import-match-disk.js index 96fa6dbfd6283..119960efc7a94 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-both-file-symlink-target-and-import-match-disk.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-both-file-symlink-target-and-import-match-disk.js @@ -79,15 +79,15 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/xy.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/b.ts: *new* {} /user/username/projects/myproject/link.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* + {} +/user/username/projects/myproject/xy.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-changing-module-name-with-different-casing.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-changing-module-name-with-different-casing.js index c66cb754d2dde..6b389ad800f3d 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-changing-module-name-with-different-casing.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-changing-module-name-with-different-casing.js @@ -57,13 +57,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/another.ts: *new* {} /user/username/projects/myproject/logger.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-directory-symlink-target-matches-disk-but-import-does-not.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-directory-symlink-target-matches-disk-but-import-does-not.js index 67378e846e9ee..1b66862a2dac4 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-directory-symlink-target-matches-disk-but-import-does-not.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-directory-symlink-target-matches-disk-but-import-does-not.js @@ -70,15 +70,15 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/xy/a.ts: *new* - {} /user/username/projects/myproject/link/a.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* + {} +/user/username/projects/myproject/xy/a.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-file-symlink-target-matches-disk-but-import-does-not.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-file-symlink-target-matches-disk-but-import-does-not.js index 4a3d33396ca0c..a930ebce2f574 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-file-symlink-target-matches-disk-but-import-does-not.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-file-symlink-target-matches-disk-but-import-does-not.js @@ -79,15 +79,15 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/xy.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/b.ts: *new* {} /user/username/projects/myproject/link.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* + {} +/user/username/projects/myproject/xy.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import,-directory-symlink-target,-and-disk-are-all-different.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import,-directory-symlink-target,-and-disk-are-all-different.js index ac5ff634cd862..a09a582546c59 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import,-directory-symlink-target,-and-disk-are-all-different.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import,-directory-symlink-target,-and-disk-are-all-different.js @@ -68,23 +68,23 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/yx: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/yx: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/b.ts: *new* {} /user/username/projects/myproject/link/a.ts: *new* {} -/user/username/projects/myproject/xy/a.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/xy/a.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import,-file-symlink-target,-and-disk-are-all-different.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import,-file-symlink-target,-and-disk-are-all-different.js index b436a463871ff..e145178c77a78 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import,-file-symlink-target,-and-disk-are-all-different.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import,-file-symlink-target,-and-disk-are-all-different.js @@ -77,25 +77,25 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: -/user/username/projects/myproject/yx: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/yx: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/xy.ts: *new* +/user/username/projects/myproject: *new* {} /user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject: *new* - {} /user/username/projects/myproject/link.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* + {} +/user/username/projects/myproject/xy.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import-and-directory-symlink-target-agree-but-do-not-match-disk.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import-and-directory-symlink-target-agree-but-do-not-match-disk.js index 9b88703fb4613..2727bca99eda4 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import-and-directory-symlink-target-agree-but-do-not-match-disk.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import-and-directory-symlink-target-agree-but-do-not-match-disk.js @@ -78,15 +78,15 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/xy/a.ts: *new* - {} /user/username/projects/myproject/link/a.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* + {} +/user/username/projects/myproject/xy/a.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import-and-file-symlink-target-agree-but-do-not-match-disk.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import-and-file-symlink-target-agree-but-do-not-match-disk.js index 24a50238b2f61..5d4f12711ff4c 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import-and-file-symlink-target-agree-but-do-not-match-disk.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import-and-file-symlink-target-agree-but-do-not-match-disk.js @@ -87,15 +87,15 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/xy.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/b.ts: *new* {} /user/username/projects/myproject/link.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* + {} +/user/username/projects/myproject/xy.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import-matches-disk-but-directory-symlink-target-does-not.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import-matches-disk-but-directory-symlink-target-does-not.js index 94dd06c653c78..76299296a21e9 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import-matches-disk-but-directory-symlink-target-does-not.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import-matches-disk-but-directory-symlink-target-does-not.js @@ -78,15 +78,15 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/xy/a.ts: *new* - {} /user/username/projects/myproject/link/a.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* + {} +/user/username/projects/myproject/xy/a.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import-matches-disk-but-file-symlink-target-does-not.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import-matches-disk-but-file-symlink-target-does-not.js index f36f915dd96cf..b39b1366f03f4 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import-matches-disk-but-file-symlink-target-does-not.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-import-matches-disk-but-file-symlink-target-does-not.js @@ -87,15 +87,15 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/xy.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/b.ts: *new* {} /user/username/projects/myproject/link.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* + {} +/user/username/projects/myproject/xy.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-relative-information-file-location-changes.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-relative-information-file-location-changes.js index 2af9d2fe4b6b9..98160e1af6984 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-relative-information-file-location-changes.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-relative-information-file-location-changes.js @@ -101,15 +101,15 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/modulea.ts: *new* {} -/user/username/projects/myproject/modulec.ts: *new* - {} /user/username/projects/myproject/moduleb.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/modulec.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-renaming-file-with-different-casing.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-renaming-file-with-different-casing.js index f86d330dc300a..71b5b67224560 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-renaming-file-with-different-casing.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/when-renaming-file-with-different-casing.js @@ -57,13 +57,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/another.ts: *new* {} /user/username/projects/myproject/logger.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/with-nodeNext-resolution.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/with-nodeNext-resolution.js index bbc51be2206f0..96c3767e6078a 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/with-nodeNext-resolution.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/with-nodeNext-resolution.js @@ -114,39 +114,39 @@ Shape signatures in builder refreshed for:: /users/name/projects/web/src/bin.ts (used version) PolledWatches:: -/users/name/projects/web/src/package.json: *new* +/users/name/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/name/projects/package.json: *new* {"pollingInterval":2000} /users/name/projects/web/package.json: *new* {"pollingInterval":2000} -/users/name/projects/package.json: *new* +/users/name/projects/web/src/package.json: *new* {"pollingInterval":2000} -/users/name/projects/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/users/name/projects/web/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/users/name/projects/web/src/bin.ts: *new* +/users/name/projects: *new* + {} +/users/name/projects/web: *new* {} /users/name/projects/web/node_modules/@types/yargs/index.d.ts: *new* {} /users/name/projects/web/node_modules/@types/yargs/package.json: *new* {} -/a/lib/lib.d.ts: *new* - {} -/users/name/projects: *new* +/users/name/projects/web/src/bin.ts: *new* {} -/users/name/projects/web: *new* +/users/name/projects/web/tsconfig.json: *new* {} FsWatchesRecursive:: -/users/name/projects/web/src: *new* +/users/name/projects/web: *new* {} /users/name/projects/web/node_modules: *new* {} /users/name/projects/web/node_modules/@types: *new* {} -/users/name/projects/web: *new* +/users/name/projects/web/src: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/incremental/editing-module-augmentation-watch.js b/tests/baselines/reference/tscWatch/incremental/editing-module-augmentation-watch.js index d67213724685a..b90ea80342159 100644 --- a/tests/baselines/reference/tscWatch/incremental/editing-module-augmentation-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/editing-module-augmentation-watch.js @@ -59,29 +59,29 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/src/types/classnames.d.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} -/users/username/projects/project/src/index.ts: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/node_modules/classnames/index.d.ts: *new* {} +/users/username/projects/project/src/index.ts: *new* + {} /users/username/projects/project/src/types/classnames.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: -/users/username/projects/project/src: *new* +/users/username/projects/project: *new* {} /users/username/projects/project/node_modules: *new* {} -/users/username/projects/project: *new* +/users/username/projects/project/src: *new* {} exitCode:: ExitStatus.undefined @@ -188,29 +188,29 @@ export {}; declare module "classnames" { interface Result {} } PolledWatches *deleted*:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches *deleted*:: -/users/username/projects/project/tsconfig.json: - {} -/users/username/projects/project/src/index.ts: +/a/lib/lib.d.ts: {} /users/username/projects/project/node_modules/classnames/index.d.ts: {} +/users/username/projects/project/src/index.ts: + {} /users/username/projects/project/src/types/classnames.d.ts: {} -/a/lib/lib.d.ts: +/users/username/projects/project/tsconfig.json: {} FsWatchesRecursive *deleted*:: -/users/username/projects/project/src: +/users/username/projects/project: {} /users/username/projects/project/node_modules: {} -/users/username/projects/project: +/users/username/projects/project/src: {} Output:: @@ -244,29 +244,29 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/src/index.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} -/users/username/projects/project/src/index.ts: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/node_modules/classnames/index.d.ts: *new* {} +/users/username/projects/project/src/index.ts: *new* + {} /users/username/projects/project/src/types/classnames.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: -/users/username/projects/project/src: *new* +/users/username/projects/project: *new* {} /users/username/projects/project/node_modules: *new* {} -/users/username/projects/project: *new* +/users/username/projects/project/src: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/incremental/importHelpers-backing-types-removed-watch.js b/tests/baselines/reference/tscWatch/incremental/importHelpers-backing-types-removed-watch.js index de5ec0327afd7..77445f3a553fc 100644 --- a/tests/baselines/reference/tscWatch/incremental/importHelpers-backing-types-removed-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/importHelpers-backing-types-removed-watch.js @@ -56,28 +56,28 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/index.tsx: *new* {} /users/username/projects/project/node_modules/tslib/index.d.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} /users/username/projects/project/node_modules/tslib/package.json: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: -/users/username/projects/project/node_modules: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/node_modules: *new* + {} exitCode:: ExitStatus.undefined @@ -97,28 +97,28 @@ Input:: //// [/users/username/projects/project/node_modules/tslib/package.json] deleted PolledWatches *deleted*:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches *deleted*:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/project/index.tsx: {} /users/username/projects/project/node_modules/tslib/index.d.ts: {} -/a/lib/lib.d.ts: - {} /users/username/projects/project/node_modules/tslib/package.json: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive *deleted*:: -/users/username/projects/project/node_modules: - {} /users/username/projects/project: {} +/users/username/projects/project/node_modules: + {} Output:: >> Screen clear @@ -151,24 +151,24 @@ Shape signatures in builder refreshed for:: PolledWatches:: /users/username/projects/node_modules: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/index.tsx: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: -/users/username/projects/project/node_modules: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/node_modules: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/incremental/incremental-with-circular-references-watch.js b/tests/baselines/reference/tscWatch/incremental/incremental-with-circular-references-watch.js index c1a443fdaacd2..db85a3c7ac4c1 100644 --- a/tests/baselines/reference/tscWatch/incremental/incremental-with-circular-references-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/incremental-with-circular-references-watch.js @@ -78,13 +78,13 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/a.ts: *new* {} @@ -94,7 +94,7 @@ FsWatches:: {} /users/username/projects/project/index.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -264,13 +264,13 @@ export interface A { PolledWatches *deleted*:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches *deleted*:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/project/a.ts: {} @@ -280,7 +280,7 @@ FsWatches *deleted*:: {} /users/username/projects/project/index.ts: {} -/a/lib/lib.d.ts: +/users/username/projects/project/tsconfig.json: {} FsWatchesRecursive *deleted*:: @@ -318,13 +318,13 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/b.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/a.ts: *new* {} @@ -334,7 +334,7 @@ FsWatches:: {} /users/username/projects/project/index.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/incremental/jsxImportSource-backing-types-added-watch.js b/tests/baselines/reference/tscWatch/incremental/jsxImportSource-backing-types-added-watch.js index 1482f753abda4..0a29440b6d4ee 100644 --- a/tests/baselines/reference/tscWatch/incremental/jsxImportSource-backing-types-added-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/jsxImportSource-backing-types-added-watch.js @@ -52,21 +52,21 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (used version) PolledWatches:: -/users/username/projects/project/node_modules: *new* - {"pollingInterval":500} /users/username/projects/node_modules: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/index.tsx: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -166,21 +166,21 @@ export const Fragment: unique symbol; PolledWatches *deleted*:: -/users/username/projects/project/node_modules: - {"pollingInterval":500} /users/username/projects/node_modules: {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules: + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches *deleted*:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/project/index.tsx: {} -/a/lib/lib.d.ts: +/users/username/projects/project/tsconfig.json: {} FsWatchesRecursive *deleted*:: @@ -212,28 +212,28 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/index.tsx: *new* {} /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} /users/username/projects/project/node_modules/react/package.json: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: -/users/username/projects/project/node_modules: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/node_modules: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/incremental/jsxImportSource-backing-types-removed-watch.js b/tests/baselines/reference/tscWatch/incremental/jsxImportSource-backing-types-removed-watch.js index a144fdf32b9e7..ef185935d332a 100644 --- a/tests/baselines/reference/tscWatch/incremental/jsxImportSource-backing-types-removed-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/jsxImportSource-backing-types-removed-watch.js @@ -67,28 +67,28 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/index.tsx: *new* {} /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} /users/username/projects/project/node_modules/react/package.json: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: -/users/username/projects/project/node_modules: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/node_modules: *new* + {} exitCode:: ExitStatus.undefined @@ -175,28 +175,28 @@ Input:: //// [/users/username/projects/project/node_modules/react/package.json] deleted PolledWatches *deleted*:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches *deleted*:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/project/index.tsx: {} /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: {} -/a/lib/lib.d.ts: - {} /users/username/projects/project/node_modules/react/package.json: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive *deleted*:: -/users/username/projects/project/node_modules: - {} /users/username/projects/project: {} +/users/username/projects/project/node_modules: + {} Output:: >> Screen clear @@ -227,24 +227,24 @@ Shape signatures in builder refreshed for:: PolledWatches:: /users/username/projects/node_modules: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/index.tsx: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: -/users/username/projects/project/node_modules: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/node_modules: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/incremental/jsxImportSource-option-changed-watch.js b/tests/baselines/reference/tscWatch/incremental/jsxImportSource-option-changed-watch.js index 88f3112a5e314..34a99f9c2a55f 100644 --- a/tests/baselines/reference/tscWatch/incremental/jsxImportSource-option-changed-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/jsxImportSource-option-changed-watch.js @@ -90,28 +90,28 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/index.tsx: *new* {} /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} /users/username/projects/project/node_modules/react/package.json: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: -/users/username/projects/project/node_modules: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/node_modules: *new* + {} exitCode:: ExitStatus.undefined @@ -199,28 +199,28 @@ Input:: PolledWatches *deleted*:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches *deleted*:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/project/index.tsx: {} /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: {} -/a/lib/lib.d.ts: - {} /users/username/projects/project/node_modules/react/package.json: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive *deleted*:: -/users/username/projects/project/node_modules: - {} /users/username/projects/project: {} +/users/username/projects/project/node_modules: + {} Output:: >> Screen clear @@ -260,28 +260,28 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/index.tsx: *new* {} /users/username/projects/project/node_modules/preact/jsx-runtime/index.d.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} /users/username/projects/project/node_modules/preact/package.json: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: -/users/username/projects/project/node_modules: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/node_modules: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/incremental/module-compilation/own-file-emit-with-errors-watch.js b/tests/baselines/reference/tscWatch/incremental/module-compilation/own-file-emit-with-errors-watch.js index a10558e059d78..778b15da3d6dc 100644 --- a/tests/baselines/reference/tscWatch/incremental/module-compilation/own-file-emit-with-errors-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/module-compilation/own-file-emit-with-errors-watch.js @@ -56,19 +56,19 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1.ts: *new* {} /users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -171,19 +171,19 @@ export const z = 10; PolledWatches *deleted*:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches *deleted*:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/project/file1.ts: {} /users/username/projects/project/file2.ts: {} -/a/lib/lib.d.ts: +/users/username/projects/project/tsconfig.json: {} FsWatchesRecursive *deleted*:: @@ -218,19 +218,19 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1.ts: *new* {} /users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/incremental/module-compilation/own-file-emit-without-errors-watch.js b/tests/baselines/reference/tscWatch/incremental/module-compilation/own-file-emit-without-errors-watch.js index e984785b551e9..39bb6b6e0aba6 100644 --- a/tests/baselines/reference/tscWatch/incremental/module-compilation/own-file-emit-without-errors-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/module-compilation/own-file-emit-without-errors-watch.js @@ -51,19 +51,19 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1.ts: *new* {} /users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -154,19 +154,19 @@ export const z = 10; PolledWatches *deleted*:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches *deleted*:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/project/file1.ts: {} /users/username/projects/project/file2.ts: {} -/a/lib/lib.d.ts: +/users/username/projects/project/tsconfig.json: {} FsWatchesRecursive *deleted*:: @@ -196,19 +196,19 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1.ts: *new* {} /users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/incremental/module-compilation/with---out-watch.js b/tests/baselines/reference/tscWatch/incremental/module-compilation/with---out-watch.js index ee73577dbef58..b2157800d1bed 100644 --- a/tests/baselines/reference/tscWatch/incremental/module-compilation/with---out-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/module-compilation/with---out-watch.js @@ -45,19 +45,19 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1.ts: *new* {} /users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/incremental/own-file-emit-with-errors-watch.js b/tests/baselines/reference/tscWatch/incremental/own-file-emit-with-errors-watch.js index ce82c6b142725..84ccc8db6f820 100644 --- a/tests/baselines/reference/tscWatch/incremental/own-file-emit-with-errors-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/own-file-emit-with-errors-watch.js @@ -56,19 +56,19 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1.ts: *new* {} /users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -168,19 +168,19 @@ const z = 10; PolledWatches *deleted*:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches *deleted*:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/project/file1.ts: {} /users/username/projects/project/file2.ts: {} -/a/lib/lib.d.ts: +/users/username/projects/project/tsconfig.json: {} FsWatchesRecursive *deleted*:: @@ -218,19 +218,19 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1.ts: *new* {} /users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/incremental/own-file-emit-without-errors/with-commandline-parameters-that-are-not-relative-watch.js b/tests/baselines/reference/tscWatch/incremental/own-file-emit-without-errors/with-commandline-parameters-that-are-not-relative-watch.js index ecc890f3586e8..172105c20e552 100644 --- a/tests/baselines/reference/tscWatch/incremental/own-file-emit-without-errors/with-commandline-parameters-that-are-not-relative-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/own-file-emit-without-errors/with-commandline-parameters-that-are-not-relative-watch.js @@ -51,19 +51,19 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1.ts: *new* {} /users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -151,19 +151,19 @@ const z = 10; PolledWatches *deleted*:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches *deleted*:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/project/file1.ts: {} /users/username/projects/project/file2.ts: {} -/a/lib/lib.d.ts: +/users/username/projects/project/tsconfig.json: {} FsWatchesRecursive *deleted*:: @@ -196,19 +196,19 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1.ts: *new* {} /users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/incremental/own-file-emit-without-errors/without-commandline-options-watch.js b/tests/baselines/reference/tscWatch/incremental/own-file-emit-without-errors/without-commandline-options-watch.js index 8ad4b3c4182dd..02b19ea4b55de 100644 --- a/tests/baselines/reference/tscWatch/incremental/own-file-emit-without-errors/without-commandline-options-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/own-file-emit-without-errors/without-commandline-options-watch.js @@ -51,19 +51,19 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1.ts: *new* {} /users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -151,19 +151,19 @@ const z = 10; PolledWatches *deleted*:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches *deleted*:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/project/file1.ts: {} /users/username/projects/project/file2.ts: {} -/a/lib/lib.d.ts: +/users/username/projects/project/tsconfig.json: {} FsWatchesRecursive *deleted*:: @@ -196,19 +196,19 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1.ts: *new* {} /users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/incremental/tsbuildinfo-has-error.js b/tests/baselines/reference/tscWatch/incremental/tsbuildinfo-has-error.js index 5f1435f930b99..628eb021acf3e 100644 --- a/tests/baselines/reference/tscWatch/incremental/tsbuildinfo-has-error.js +++ b/tests/baselines/reference/tscWatch/incremental/tsbuildinfo-has-error.js @@ -48,11 +48,11 @@ Shape signatures in builder refreshed for:: /src/project/main.ts (used version) FsWatches:: -/src/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /src/project/main.ts: *new* {} -/a/lib/lib.d.ts: *new* +/src/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/incremental/when-file-with-ambient-global-declaration-file-is-deleted-watch.js b/tests/baselines/reference/tscWatch/incremental/when-file-with-ambient-global-declaration-file-is-deleted-watch.js index d71e6a18bc6dc..ec1957a285f41 100644 --- a/tests/baselines/reference/tscWatch/incremental/when-file-with-ambient-global-declaration-file-is-deleted-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/when-file-with-ambient-global-declaration-file-is-deleted-watch.js @@ -53,19 +53,19 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/globals.d.ts: *new* {} /users/username/projects/project/index.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -147,19 +147,19 @@ Input:: //// [/users/username/projects/project/globals.d.ts] deleted PolledWatches *deleted*:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches *deleted*:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/project/globals.d.ts: {} /users/username/projects/project/index.ts: {} -/a/lib/lib.d.ts: +/users/username/projects/project/tsconfig.json: {} FsWatchesRecursive *deleted*:: @@ -194,17 +194,17 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/index.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/incremental/with---out-watch.js b/tests/baselines/reference/tscWatch/incremental/with---out-watch.js index bc13486e27262..aa6740c68596d 100644 --- a/tests/baselines/reference/tscWatch/incremental/with---out-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/with---out-watch.js @@ -45,19 +45,19 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1.ts: *new* {} /users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/libraryResolution/with-config-with-redirection.js b/tests/baselines/reference/tscWatch/libraryResolution/with-config-with-redirection.js index a9ab07f8e8f30..9c5df76d51b04 100644 --- a/tests/baselines/reference/tscWatch/libraryResolution/with-config-with-redirection.js +++ b/tests/baselines/reference/tscWatch/libraryResolution/with-config-with-redirection.js @@ -296,36 +296,36 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: *new* - {} -/home/src/projects/project1/core.d.ts: *new* +/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: *new* {} -/home/src/projects/project1/file.ts: *new* +/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: *new* {} -/home/src/projects/project1/file2.ts: *new* +/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: *new* {} /home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: *new* {} -/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: *new* +/home/src/projects/project1/core.d.ts: *new* {} -/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: *new* +/home/src/projects/project1/file.ts: *new* + {} +/home/src/projects/project1/file2.ts: *new* {} /home/src/projects/project1/index.ts: *new* {} -/home/src/projects/project1/utils.d.ts: *new* +/home/src/projects/project1/tsconfig.json: *new* {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: *new* {} -/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: *new* +/home/src/projects/project1/utils.d.ts: *new* {} FsWatchesRecursive:: /home/src/projects/node_modules: *new* {} -/home/src/projects/project1/typeroot1: *new* - {} /home/src/projects/project1: *new* {} +/home/src/projects/project1/typeroot1: *new* + {} exitCode:: ExitStatus.undefined @@ -623,27 +623,27 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: - {} -/home/src/projects/project1/core.d.ts: +/home/src/lib/lib.dom.d.ts: *new* {} -/home/src/projects/project1/file.ts: +/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: {} /home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: +/home/src/projects/project1/core.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: +/home/src/projects/project1/file.ts: + {} +/home/src/projects/project1/file2.ts: {} /home/src/projects/project1/index.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/lib/lib.dom.d.ts: *new* +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -653,10 +653,10 @@ FsWatches *deleted*:: FsWatchesRecursive:: /home/src/projects/node_modules: {} -/home/src/projects/project1/typeroot1: - {} /home/src/projects/project1: {} +/home/src/projects/project1/typeroot1: + {} exitCode:: ExitStatus.undefined @@ -1088,25 +1088,25 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: +/home/src/lib/lib.dom.d.ts: {} -/home/src/projects/project1/file.ts: +/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: {} /home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: +/home/src/projects/project1/file2.ts: {} /home/src/projects/project1/index.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/lib/lib.dom.d.ts: +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -1116,10 +1116,10 @@ FsWatches *deleted*:: FsWatchesRecursive:: /home/src/projects/node_modules: {} -/home/src/projects/project1/typeroot1: - {} /home/src/projects/project1: {} +/home/src/projects/project1/typeroot1: + {} exitCode:: ExitStatus.undefined @@ -1357,25 +1357,25 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: +/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: *new* {} -/home/src/projects/project1/file.ts: +/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: {} /home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: +/home/src/projects/project1/file2.ts: {} /home/src/projects/project1/index.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: *new* +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -1385,10 +1385,10 @@ FsWatches *deleted*:: FsWatchesRecursive:: /home/src/projects/node_modules: {} -/home/src/projects/project1/typeroot1: - {} /home/src/projects/project1: {} +/home/src/projects/project1/typeroot1: + {} exitCode:: ExitStatus.undefined @@ -1603,34 +1603,34 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: +/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: {} -/home/src/projects/project1/file.ts: +/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: {} /home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: +/home/src/projects/project1/file2.ts: {} /home/src/projects/project1/index.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: +/home/src/projects/project1/utils.d.ts: {} FsWatchesRecursive:: /home/src/projects/node_modules: {} -/home/src/projects/project1/typeroot1: - {} /home/src/projects/project1: {} +/home/src/projects/project1/typeroot1: + {} exitCode:: ExitStatus.undefined @@ -1777,25 +1777,25 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: +/home/src/lib/lib.dom.d.ts: *new* {} -/home/src/projects/project1/file.ts: +/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: {} /home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: +/home/src/projects/project1/file2.ts: {} /home/src/projects/project1/index.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/lib/lib.dom.d.ts: *new* +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -1805,10 +1805,10 @@ FsWatches *deleted*:: FsWatchesRecursive:: /home/src/projects/node_modules: {} -/home/src/projects/project1/typeroot1: - {} /home/src/projects/project1: {} +/home/src/projects/project1/typeroot1: + {} exitCode:: ExitStatus.undefined @@ -2063,25 +2063,25 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: +/home/src/lib/lib.dom.d.ts: {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.webworker.d.ts: *new* {} -/home/src/projects/project1/file2.ts: +/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: {} /home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: +/home/src/projects/project1/file.ts: + {} +/home/src/projects/project1/file2.ts: {} /home/src/projects/project1/index.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/lib/lib.dom.d.ts: - {} -/home/src/lib/lib.webworker.d.ts: *new* +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -2091,10 +2091,10 @@ FsWatches *deleted*:: FsWatchesRecursive:: /home/src/projects/node_modules: {} -/home/src/projects/project1/typeroot1: - {} /home/src/projects/project1: {} +/home/src/projects/project1/typeroot1: + {} exitCode:: ExitStatus.undefined @@ -2335,25 +2335,25 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: - {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.dom.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: {} /home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: +/home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: *new* + {} +/home/src/projects/project1/file.ts: + {} +/home/src/projects/project1/file2.ts: {} /home/src/projects/project1/index.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/lib/lib.dom.d.ts: - {} -/home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: *new* +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -2363,10 +2363,10 @@ FsWatches *deleted*:: FsWatchesRecursive:: /home/src/projects/node_modules: {} -/home/src/projects/project1/typeroot1: - {} /home/src/projects/project1: {} +/home/src/projects/project1/typeroot1: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/libraryResolution/with-config.js b/tests/baselines/reference/tscWatch/libraryResolution/with-config.js index f1faf8c992d2f..829eb460aac32 100644 --- a/tests/baselines/reference/tscWatch/libraryResolution/with-config.js +++ b/tests/baselines/reference/tscWatch/libraryResolution/with-config.js @@ -297,36 +297,36 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: *new* - {} -/home/src/projects/project1/core.d.ts: *new* +/home/src/lib/lib.dom.d.ts: *new* {} -/home/src/projects/project1/file.ts: *new* +/home/src/lib/lib.es5.d.ts: *new* {} -/home/src/projects/project1/file2.ts: *new* +/home/src/lib/lib.scripthost.d.ts: *new* {} /home/src/lib/lib.webworker.d.ts: *new* {} -/home/src/lib/lib.scripthost.d.ts: *new* +/home/src/projects/project1/core.d.ts: *new* {} -/home/src/lib/lib.es5.d.ts: *new* +/home/src/projects/project1/file.ts: *new* + {} +/home/src/projects/project1/file2.ts: *new* {} /home/src/projects/project1/index.ts: *new* {} -/home/src/projects/project1/utils.d.ts: *new* +/home/src/projects/project1/tsconfig.json: *new* {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: *new* {} -/home/src/lib/lib.dom.d.ts: *new* +/home/src/projects/project1/utils.d.ts: *new* {} FsWatchesRecursive:: /home/src/projects/node_modules: *new* {} -/home/src/projects/project1/typeroot1: *new* - {} /home/src/projects/project1: *new* {} +/home/src/projects/project1/typeroot1: *new* + {} exitCode:: ExitStatus.undefined @@ -613,27 +613,27 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: +/home/src/lib/lib.es5.d.ts: {} -/home/src/projects/project1/core.d.ts: +/home/src/lib/lib.scripthost.d.ts: {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.webworker.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: *new* {} -/home/src/lib/lib.webworker.d.ts: +/home/src/projects/project1/core.d.ts: {} -/home/src/lib/lib.scripthost.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/lib/lib.es5.d.ts: +/home/src/projects/project1/file2.ts: {} /home/src/projects/project1/index.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: *new* +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -643,10 +643,10 @@ FsWatches *deleted*:: FsWatchesRecursive:: /home/src/projects/node_modules: {} -/home/src/projects/project1/typeroot1: - {} /home/src/projects/project1: {} +/home/src/projects/project1/typeroot1: + {} exitCode:: ExitStatus.undefined @@ -1078,25 +1078,25 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: - {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.es5.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/lib/lib.scripthost.d.ts: {} /home/src/lib/lib.webworker.d.ts: {} -/home/src/lib/lib.scripthost.d.ts: +/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: {} -/home/src/lib/lib.es5.d.ts: +/home/src/projects/project1/file.ts: + {} +/home/src/projects/project1/file2.ts: {} /home/src/projects/project1/index.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -1106,10 +1106,10 @@ FsWatches *deleted*:: FsWatchesRecursive:: /home/src/projects/node_modules: {} -/home/src/projects/project1/typeroot1: - {} /home/src/projects/project1: {} +/home/src/projects/project1/typeroot1: + {} exitCode:: ExitStatus.undefined @@ -1361,25 +1361,25 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: +/home/src/lib/lib.dom.d.ts: *new* {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.es5.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/lib/lib.scripthost.d.ts: {} /home/src/lib/lib.webworker.d.ts: {} -/home/src/lib/lib.scripthost.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/lib/lib.es5.d.ts: +/home/src/projects/project1/file2.ts: {} /home/src/projects/project1/index.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/lib/lib.dom.d.ts: *new* +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -1389,10 +1389,10 @@ FsWatches *deleted*:: FsWatchesRecursive:: /home/src/projects/node_modules: {} -/home/src/projects/project1/typeroot1: - {} /home/src/projects/project1: {} +/home/src/projects/project1/typeroot1: + {} exitCode:: ExitStatus.undefined @@ -1607,34 +1607,34 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: +/home/src/lib/lib.dom.d.ts: {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.es5.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/lib/lib.scripthost.d.ts: {} /home/src/lib/lib.webworker.d.ts: {} -/home/src/lib/lib.scripthost.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/lib/lib.es5.d.ts: +/home/src/projects/project1/file2.ts: {} /home/src/projects/project1/index.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/lib/lib.dom.d.ts: +/home/src/projects/project1/utils.d.ts: {} FsWatchesRecursive:: /home/src/projects/node_modules: {} -/home/src/projects/project1/typeroot1: - {} /home/src/projects/project1: {} +/home/src/projects/project1/typeroot1: + {} exitCode:: ExitStatus.undefined @@ -1763,25 +1763,25 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: - {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.es5.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/lib/lib.scripthost.d.ts: {} /home/src/lib/lib.webworker.d.ts: {} -/home/src/lib/lib.scripthost.d.ts: +/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: *new* {} -/home/src/lib/lib.es5.d.ts: +/home/src/projects/project1/file.ts: + {} +/home/src/projects/project1/file2.ts: {} /home/src/projects/project1/index.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: *new* +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -1791,10 +1791,10 @@ FsWatches *deleted*:: FsWatchesRecursive:: /home/src/projects/node_modules: {} -/home/src/projects/project1/typeroot1: - {} /home/src/projects/project1: {} +/home/src/projects/project1/typeroot1: + {} exitCode:: ExitStatus.undefined @@ -2038,25 +2038,25 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: +/home/src/lib/lib.es5.d.ts: {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.scripthost.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: {} -/home/src/lib/lib.scripthost.d.ts: +/home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: *new* {} -/home/src/lib/lib.es5.d.ts: +/home/src/projects/project1/file.ts: + {} +/home/src/projects/project1/file2.ts: {} /home/src/projects/project1/index.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: - {} -/home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: *new* +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -2066,10 +2066,10 @@ FsWatches *deleted*:: FsWatchesRecursive:: /home/src/projects/node_modules: {} -/home/src/projects/project1/typeroot1: - {} /home/src/projects/project1: {} +/home/src/projects/project1/typeroot1: + {} exitCode:: ExitStatus.undefined @@ -2324,25 +2324,25 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: +/home/src/lib/lib.es5.d.ts: {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.scripthost.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/lib/lib.webworker.d.ts: *new* {} -/home/src/lib/lib.scripthost.d.ts: +/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: {} -/home/src/lib/lib.es5.d.ts: +/home/src/projects/project1/file.ts: + {} +/home/src/projects/project1/file2.ts: {} /home/src/projects/project1/index.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: - {} -/home/src/lib/lib.webworker.d.ts: *new* +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -2352,10 +2352,10 @@ FsWatches *deleted*:: FsWatchesRecursive:: /home/src/projects/node_modules: {} -/home/src/projects/project1/typeroot1: - {} /home/src/projects/project1: {} +/home/src/projects/project1/typeroot1: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/libraryResolution/without-config-with-redirection.js b/tests/baselines/reference/tscWatch/libraryResolution/without-config-with-redirection.js index ebadf6eed224b..ac6aff00797f7 100644 --- a/tests/baselines/reference/tscWatch/libraryResolution/without-config-with-redirection.js +++ b/tests/baselines/reference/tscWatch/libraryResolution/without-config-with-redirection.js @@ -267,23 +267,23 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/core.d.ts: *new* +/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: *new* {} -/home/src/projects/project1/utils.d.ts: *new* +/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: *new* {} -/home/src/projects/project1/file.ts: *new* +/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: *new* {} -/home/src/projects/project1/index.ts: *new* +/home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: *new* {} -/home/src/projects/project1/file2.ts: *new* +/home/src/projects/project1/core.d.ts: *new* {} -/home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: *new* +/home/src/projects/project1/file.ts: *new* {} -/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: *new* +/home/src/projects/project1/file2.ts: *new* {} -/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: *new* +/home/src/projects/project1/index.ts: *new* {} -/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: *new* +/home/src/projects/project1/utils.d.ts: *new* {} FsWatchesRecursive:: @@ -431,23 +431,23 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/core.d.ts: +/home/src/lib/lib.dom.d.ts: *new* {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: {} -/home/src/projects/project1/file.ts: +/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: {} -/home/src/projects/project1/index.ts: +/home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/projects/project1/core.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: +/home/src/projects/project1/file2.ts: {} -/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: +/home/src/projects/project1/index.ts: {} -/home/src/lib/lib.dom.d.ts: *new* +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -615,21 +615,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/utils.d.ts: - {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.dom.d.ts: {} -/home/src/projects/project1/index.ts: +/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: {} /home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: +/home/src/projects/project1/file2.ts: {} -/home/src/lib/lib.dom.d.ts: +/home/src/projects/project1/index.ts: + {} +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -741,21 +741,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/utils.d.ts: - {} -/home/src/projects/project1/file.ts: +/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: *new* {} -/home/src/projects/project1/index.ts: +/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: {} /home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: +/home/src/projects/project1/file2.ts: {} -/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: *new* +/home/src/projects/project1/index.ts: + {} +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -883,21 +883,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/utils.d.ts: - {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.webworker.d.ts: *new* {} -/home/src/projects/project1/index.ts: +/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: {} /home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: {} -/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: +/home/src/projects/project1/file2.ts: {} -/home/src/lib/lib.webworker.d.ts: *new* +/home/src/projects/project1/index.ts: + {} +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -1012,21 +1012,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/utils.d.ts: +/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: {} -/home/src/projects/project1/file.ts: +/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: {} -/home/src/projects/project1/index.ts: +/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: *new* {} -/home/src/projects/node_modules/@typescript/lib-scripthost/index.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/projects/node_modules/@typescript/lib-es5/index.d.ts: +/home/src/projects/project1/file2.ts: {} -/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: +/home/src/projects/project1/index.ts: {} -/home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: *new* +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tscWatch/libraryResolution/without-config.js b/tests/baselines/reference/tscWatch/libraryResolution/without-config.js index eccfe8f671717..05aa24c84229f 100644 --- a/tests/baselines/reference/tscWatch/libraryResolution/without-config.js +++ b/tests/baselines/reference/tscWatch/libraryResolution/without-config.js @@ -264,23 +264,23 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/core.d.ts: *new* +/home/src/lib/lib.dom.d.ts: *new* {} -/home/src/projects/project1/utils.d.ts: *new* +/home/src/lib/lib.es5.d.ts: *new* {} -/home/src/projects/project1/file.ts: *new* +/home/src/lib/lib.scripthost.d.ts: *new* {} -/home/src/projects/project1/index.ts: *new* +/home/src/lib/lib.webworker.d.ts: *new* {} -/home/src/projects/project1/file2.ts: *new* +/home/src/projects/project1/core.d.ts: *new* {} -/home/src/lib/lib.webworker.d.ts: *new* +/home/src/projects/project1/file.ts: *new* {} -/home/src/lib/lib.scripthost.d.ts: *new* +/home/src/projects/project1/file2.ts: *new* {} -/home/src/lib/lib.es5.d.ts: *new* +/home/src/projects/project1/index.ts: *new* {} -/home/src/lib/lib.dom.d.ts: *new* +/home/src/projects/project1/utils.d.ts: *new* {} FsWatchesRecursive:: @@ -418,23 +418,23 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/core.d.ts: +/home/src/lib/lib.es5.d.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/lib/lib.scripthost.d.ts: {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.webworker.d.ts: {} -/home/src/projects/project1/index.ts: +/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: *new* {} -/home/src/projects/project1/file2.ts: +/home/src/projects/project1/core.d.ts: {} -/home/src/lib/lib.webworker.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/lib/lib.scripthost.d.ts: +/home/src/projects/project1/file2.ts: {} -/home/src/lib/lib.es5.d.ts: +/home/src/projects/project1/index.ts: {} -/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: *new* +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -602,21 +602,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/utils.d.ts: +/home/src/lib/lib.es5.d.ts: {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.scripthost.d.ts: {} -/home/src/projects/project1/index.ts: +/home/src/lib/lib.webworker.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: {} -/home/src/lib/lib.webworker.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/lib/lib.scripthost.d.ts: +/home/src/projects/project1/file2.ts: {} -/home/src/lib/lib.es5.d.ts: +/home/src/projects/project1/index.ts: {} -/home/src/projects/node_modules/@typescript/lib-dom/index.d.ts: +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -741,21 +741,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/utils.d.ts: - {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.dom.d.ts: *new* {} -/home/src/projects/project1/index.ts: +/home/src/lib/lib.es5.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/lib/lib.scripthost.d.ts: {} /home/src/lib/lib.webworker.d.ts: {} -/home/src/lib/lib.scripthost.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/lib/lib.es5.d.ts: +/home/src/projects/project1/file2.ts: {} -/home/src/lib/lib.dom.d.ts: *new* +/home/src/projects/project1/index.ts: + {} +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -873,21 +873,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/utils.d.ts: +/home/src/lib/lib.dom.d.ts: {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.es5.d.ts: {} -/home/src/projects/project1/index.ts: +/home/src/lib/lib.scripthost.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: *new* {} -/home/src/lib/lib.scripthost.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/lib/lib.es5.d.ts: +/home/src/projects/project1/file2.ts: {} -/home/src/lib/lib.dom.d.ts: +/home/src/projects/project1/index.ts: {} -/home/src/projects/node_modules/@typescript/lib-webworker/index.d.ts: *new* +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -1015,21 +1015,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/utils.d.ts: +/home/src/lib/lib.dom.d.ts: {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.es5.d.ts: {} -/home/src/projects/project1/index.ts: +/home/src/lib/lib.scripthost.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/lib/lib.webworker.d.ts: *new* {} -/home/src/lib/lib.scripthost.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/lib/lib.es5.d.ts: +/home/src/projects/project1/file2.ts: {} -/home/src/lib/lib.dom.d.ts: +/home/src/projects/project1/index.ts: {} -/home/src/lib/lib.webworker.d.ts: *new* +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tscWatch/moduleResolution/diagnostics-from-cache.js b/tests/baselines/reference/tscWatch/moduleResolution/diagnostics-from-cache.js index 87d93b7515130..406f6be80bbbb 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/diagnostics-from-cache.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/diagnostics-from-cache.js @@ -80,16 +80,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/index.ts: *new* {} /user/username/projects/myproject/index2.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} /user/username/projects/myproject/package.json: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject: *new* diff --git a/tests/baselines/reference/tscWatch/moduleResolution/module-resolutions-from-file-are-partially-used.js b/tests/baselines/reference/tscWatch/moduleResolution/module-resolutions-from-file-are-partially-used.js index 5576f1e829e1c..dda5f2dc9aa5b 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/module-resolutions-from-file-are-partially-used.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/module-resolutions-from-file-are-partially-used.js @@ -159,19 +159,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/index.ts (used version) PolledWatches:: -/user/username/projects/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/package.json: *new* {"pollingInterval":2000} -/user/username/projects/package.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/node_modules: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/package.json: *new* + {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* + {} +/user/username/projects: *new* + {} +/user/username/projects/myproject: *new* {} /user/username/projects/myproject/a.ts: *new* {} @@ -179,22 +183,18 @@ FsWatches:: {} /user/username/projects/myproject/node_modules/pkg/import.d.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} -/user/username/projects: *new* - {} -/user/username/projects/myproject: *new* - {} /user/username/projects/myproject/node_modules/pkg/package.json: *new* {} /user/username/projects/myproject/node_modules/pkg1/package.json: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: -/user/username/projects/myproject/node_modules: *new* - {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/node_modules: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/moduleResolution/node10Result.js b/tests/baselines/reference/tscWatch/moduleResolution/node10Result.js index a09b50d747035..69b2daecb4ec0 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/node10Result.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/node10Result.js @@ -380,31 +380,31 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* + {} +/home/src/projects: *new* + {} +/home/src/projects/project: *new* {} /home/src/projects/project/index.mts: *new* {} -/home/src/projects/project/node_modules/foo2/index.d.ts: *new* +/home/src/projects/project/node_modules/@types/bar/package.json: *new* {} /home/src/projects/project/node_modules/@types/bar2/index.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/home/src/projects/project/node_modules/@types/bar2/package.json: *new* {} -/home/src/projects: *new* +/home/src/projects/project/node_modules/bar/package.json: *new* {} -/home/src/projects/project: *new* +/home/src/projects/project/node_modules/bar2/package.json: *new* {} /home/src/projects/project/node_modules/foo/package.json: *new* {} -/home/src/projects/project/node_modules/bar/package.json: *new* - {} -/home/src/projects/project/node_modules/@types/bar/package.json: *new* +/home/src/projects/project/node_modules/foo2/index.d.ts: *new* {} /home/src/projects/project/node_modules/foo2/package.json: *new* {} -/home/src/projects/project/node_modules/bar2/package.json: *new* - {} -/home/src/projects/project/node_modules/@types/bar2/package.json: *new* +/home/src/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -1184,33 +1184,33 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project/tsconfig.json: - {} -/home/src/projects/project/index.mts: - {} -/home/src/projects/project/node_modules/foo2/index.d.ts: - {} -/home/src/projects/project/node_modules/@types/bar2/index.d.ts: - {} /a/lib/lib.d.ts: {} /home/src/projects: {} /home/src/projects/project: {} -/home/src/projects/project/node_modules/foo/package.json: +/home/src/projects/project/index.mts: {} -/home/src/projects/project/node_modules/bar/package.json: +/home/src/projects/project/node_modules/@types/bar/index.d.ts: *new* {} /home/src/projects/project/node_modules/@types/bar/package.json: {} -/home/src/projects/project/node_modules/foo2/package.json: +/home/src/projects/project/node_modules/@types/bar2/index.d.ts: + {} +/home/src/projects/project/node_modules/@types/bar2/package.json: + {} +/home/src/projects/project/node_modules/bar/package.json: {} /home/src/projects/project/node_modules/bar2/package.json: {} -/home/src/projects/project/node_modules/@types/bar2/package.json: +/home/src/projects/project/node_modules/foo/package.json: {} -/home/src/projects/project/node_modules/@types/bar/index.d.ts: *new* +/home/src/projects/project/node_modules/foo2/index.d.ts: + {} +/home/src/projects/project/node_modules/foo2/package.json: + {} +/home/src/projects/project/tsconfig.json: {} FsWatchesRecursive:: @@ -1446,36 +1446,36 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project/tsconfig.json: - {} -/home/src/projects/project/index.mts: - {} -/home/src/projects/project/node_modules/foo2/index.d.ts: - {} -/home/src/projects/project/node_modules/@types/bar2/index.d.ts: - {} /a/lib/lib.d.ts: {} /home/src/projects: {} /home/src/projects/project: {} -/home/src/projects/project/node_modules/foo/package.json: +/home/src/projects/project/index.mts: {} -/home/src/projects/project/node_modules/bar/package.json: +/home/src/projects/project/node_modules/@types/bar/index.d.ts: {} /home/src/projects/project/node_modules/@types/bar/package.json: {} -/home/src/projects/project/node_modules/foo2/package.json: - {} -/home/src/projects/project/node_modules/bar2/package.json: +/home/src/projects/project/node_modules/@types/bar2/index.d.ts: {} /home/src/projects/project/node_modules/@types/bar2/package.json: {} -/home/src/projects/project/node_modules/@types/bar/index.d.ts: +/home/src/projects/project/node_modules/bar/package.json: + {} +/home/src/projects/project/node_modules/bar2/package.json: {} /home/src/projects/project/node_modules/foo/index.d.ts: *new* {} +/home/src/projects/project/node_modules/foo/package.json: + {} +/home/src/projects/project/node_modules/foo2/index.d.ts: + {} +/home/src/projects/project/node_modules/foo2/package.json: + {} +/home/src/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /home/src/projects/project/node_modules: @@ -1746,33 +1746,33 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project/tsconfig.json: - {} -/home/src/projects/project/index.mts: - {} -/home/src/projects/project/node_modules/foo2/index.d.ts: - {} /a/lib/lib.d.ts: {} /home/src/projects: {} /home/src/projects/project: {} -/home/src/projects/project/node_modules/foo/package.json: +/home/src/projects/project/index.mts: {} -/home/src/projects/project/node_modules/bar/package.json: +/home/src/projects/project/node_modules/@types/bar/index.d.ts: {} /home/src/projects/project/node_modules/@types/bar/package.json: {} -/home/src/projects/project/node_modules/foo2/package.json: +/home/src/projects/project/node_modules/@types/bar2/package.json: + {} +/home/src/projects/project/node_modules/bar/package.json: {} /home/src/projects/project/node_modules/bar2/package.json: {} -/home/src/projects/project/node_modules/@types/bar2/package.json: +/home/src/projects/project/node_modules/foo/index.d.ts: {} -/home/src/projects/project/node_modules/@types/bar/index.d.ts: +/home/src/projects/project/node_modules/foo/package.json: {} -/home/src/projects/project/node_modules/foo/index.d.ts: +/home/src/projects/project/node_modules/foo2/index.d.ts: + {} +/home/src/projects/project/node_modules/foo2/package.json: + {} +/home/src/projects/project/tsconfig.json: {} FsWatches *deleted*:: @@ -2042,31 +2042,31 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project/tsconfig.json: - {} -/home/src/projects/project/index.mts: - {} /a/lib/lib.d.ts: {} /home/src/projects: {} /home/src/projects/project: {} -/home/src/projects/project/node_modules/foo/package.json: +/home/src/projects/project/index.mts: {} -/home/src/projects/project/node_modules/bar/package.json: +/home/src/projects/project/node_modules/@types/bar/index.d.ts: {} /home/src/projects/project/node_modules/@types/bar/package.json: {} -/home/src/projects/project/node_modules/foo2/package.json: +/home/src/projects/project/node_modules/@types/bar2/package.json: + {} +/home/src/projects/project/node_modules/bar/package.json: {} /home/src/projects/project/node_modules/bar2/package.json: {} -/home/src/projects/project/node_modules/@types/bar2/package.json: +/home/src/projects/project/node_modules/foo/index.d.ts: {} -/home/src/projects/project/node_modules/@types/bar/index.d.ts: +/home/src/projects/project/node_modules/foo/package.json: {} -/home/src/projects/project/node_modules/foo/index.d.ts: +/home/src/projects/project/node_modules/foo2/package.json: + {} +/home/src/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tscWatch/moduleResolution/package-json-file-is-edited-when-package-json-with-type-module-exists.js b/tests/baselines/reference/tscWatch/moduleResolution/package-json-file-is-edited-when-package-json-with-type-module-exists.js index cdc758d9045cd..0f73ffa38f443 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/package-json-file-is-edited-when-package-json-with-type-module-exists.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/package-json-file-is-edited-when-package-json-with-type-module-exists.js @@ -99,25 +99,25 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (used version) PolledWatches:: -/user/username/projects/myproject/src/package.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: *new* + {"pollingInterval":2000} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: *new* +/a/lib/lib.es2016.full.d.ts: *new* {} -/user/username/projects/myproject/src/filea.ts: *new* +/user/username/projects/myproject/package.json: *new* {} /user/username/projects/myproject/src: *new* {} -/a/lib/lib.es2016.full.d.ts: *new* +/user/username/projects/myproject/src/filea.ts: *new* {} -/user/username/projects/myproject/package.json: *new* +/user/username/projects/myproject/src/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -212,27 +212,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/src/fileb.mjs: *new* {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: + {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: +/a/lib/lib.es2016.full.d.ts: {} -/user/username/projects/myproject/src/filea.ts: +/user/username/projects/myproject/package.json: {} /user/username/projects/myproject/src: {} -/a/lib/lib.es2016.full.d.ts: +/user/username/projects/myproject/src/filea.ts: {} -/user/username/projects/myproject/package.json: +/user/username/projects/myproject/src/tsconfig.json: {} FsWatchesRecursive:: @@ -324,12 +324,12 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: + {"pollingInterval":2000} /user/username/projects/node_modules/@types: {"pollingInterval":500} @@ -338,15 +338,15 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: +/a/lib/lib.es2016.full.d.ts: {} -/user/username/projects/myproject/src/filea.ts: +/user/username/projects/myproject/package.json: {} /user/username/projects/myproject/src: {} -/a/lib/lib.es2016.full.d.ts: +/user/username/projects/myproject/src/filea.ts: {} -/user/username/projects/myproject/package.json: +/user/username/projects/myproject/src/tsconfig.json: {} FsWatchesRecursive:: @@ -448,29 +448,29 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/src/fileb.mjs: *new* {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: + {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/package.json: *new* {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: +/a/lib/lib.es2016.full.d.ts: {} -/user/username/projects/myproject/src/filea.ts: +/user/username/projects/myproject/package.json: {} /user/username/projects/myproject/src: {} -/a/lib/lib.es2016.full.d.ts: +/user/username/projects/myproject/src/filea.ts: {} -/user/username/projects/myproject/package.json: +/user/username/projects/myproject/src/tsconfig.json: {} FsWatchesRecursive:: @@ -550,31 +550,31 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/src/fileb.mjs: {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: + {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/package.json: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: +/a/lib/lib.es2016.full.d.ts: {} -/user/username/projects/myproject/src/filea.ts: +/user/username/projects/myproject/package.json: {} /user/username/projects/myproject/src: {} -/a/lib/lib.es2016.full.d.ts: +/user/username/projects/myproject/src/filea.ts: {} -/user/username/projects/myproject/package.json: +/user/username/projects/myproject/src/tsconfig.json: {} FsWatchesRecursive:: @@ -653,29 +653,29 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/src/fileb.mjs: {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: + {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/package.json: *new* {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: +/a/lib/lib.es2016.full.d.ts: {} -/user/username/projects/myproject/src/filea.ts: +/user/username/projects/myproject/package.json: {} /user/username/projects/myproject/src: {} -/a/lib/lib.es2016.full.d.ts: +/user/username/projects/myproject/src/filea.ts: {} -/user/username/projects/myproject/package.json: +/user/username/projects/myproject/src/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/moduleResolution/package-json-file-is-edited.js b/tests/baselines/reference/tscWatch/moduleResolution/package-json-file-is-edited.js index 41df391257404..7b11a1f5d66d5 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/package-json-file-is-edited.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/package-json-file-is-edited.js @@ -106,27 +106,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/src/fileb.mjs: *new* {"pollingInterval":500} -/user/username/projects/myproject/src/package.json: *new* - {"pollingInterval":2000} /user/username/projects/myproject/src/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* - {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: *new* + {"pollingInterval":2000} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: *new* +/a/lib/lib.es2016.full.d.ts: *new* {} -/user/username/projects/myproject/src/filea.ts: *new* +/user/username/projects/myproject/package.json: *new* {} /user/username/projects/myproject/src: *new* {} -/a/lib/lib.es2016.full.d.ts: *new* +/user/username/projects/myproject/src/filea.ts: *new* {} -/user/username/projects/myproject/package.json: *new* +/user/username/projects/myproject/src/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -218,12 +218,12 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: + {"pollingInterval":2000} /user/username/projects/node_modules/@types: {"pollingInterval":500} @@ -232,15 +232,15 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: +/a/lib/lib.es2016.full.d.ts: {} -/user/username/projects/myproject/src/filea.ts: +/user/username/projects/myproject/package.json: {} /user/username/projects/myproject/src: {} -/a/lib/lib.es2016.full.d.ts: +/user/username/projects/myproject/src/filea.ts: {} -/user/username/projects/myproject/package.json: +/user/username/projects/myproject/src/tsconfig.json: {} FsWatchesRecursive:: @@ -335,27 +335,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/src/fileb.mjs: *new* {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: + {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: +/a/lib/lib.es2016.full.d.ts: {} -/user/username/projects/myproject/src/filea.ts: +/user/username/projects/myproject/package.json: {} /user/username/projects/myproject/src: {} -/a/lib/lib.es2016.full.d.ts: +/user/username/projects/myproject/src/filea.ts: {} -/user/username/projects/myproject/package.json: +/user/username/projects/myproject/src/tsconfig.json: {} FsWatchesRecursive:: @@ -441,29 +441,29 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/src/fileb.mjs: {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: + {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/package.json: *new* {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: +/a/lib/lib.es2016.full.d.ts: {} -/user/username/projects/myproject/src/filea.ts: +/user/username/projects/myproject/package.json: {} /user/username/projects/myproject/src: {} -/a/lib/lib.es2016.full.d.ts: +/user/username/projects/myproject/src/filea.ts: {} -/user/username/projects/myproject/package.json: +/user/username/projects/myproject/src/tsconfig.json: {} FsWatchesRecursive:: @@ -549,12 +549,12 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: + {"pollingInterval":2000} /user/username/projects/node_modules/@types: {"pollingInterval":500} @@ -565,15 +565,15 @@ PolledWatches *deleted*:: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: +/a/lib/lib.es2016.full.d.ts: {} -/user/username/projects/myproject/src/filea.ts: +/user/username/projects/myproject/package.json: {} /user/username/projects/myproject/src: {} -/a/lib/lib.es2016.full.d.ts: +/user/username/projects/myproject/src/filea.ts: {} -/user/username/projects/myproject/package.json: +/user/username/projects/myproject/src/tsconfig.json: {} FsWatchesRecursive:: @@ -675,29 +675,29 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/src/fileb.mjs: *new* {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: + {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/package.json: *new* {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: +/a/lib/lib.es2016.full.d.ts: {} -/user/username/projects/myproject/src/filea.ts: +/user/username/projects/myproject/package.json: {} /user/username/projects/myproject/src: {} -/a/lib/lib.es2016.full.d.ts: +/user/username/projects/myproject/src/filea.ts: {} -/user/username/projects/myproject/package.json: +/user/username/projects/myproject/src/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/moduleResolution/type-reference-resolutions-reuse.js b/tests/baselines/reference/tscWatch/moduleResolution/type-reference-resolutions-reuse.js index ae2064475ccda..46fd21c07cbd3 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/type-reference-resolutions-reuse.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/type-reference-resolutions-reuse.js @@ -168,46 +168,46 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/@types/pkg2/index.d.ts (used version) PolledWatches:: -/user/username/projects/node_modules: *new* - {"pollingInterval":500} -/user/username/projects/myproject/package.json: *new* - {"pollingInterval":2000} -/user/username/projects/package.json: *new* +/user/username/projects/myproject/node_modules/@types/package.json: *new* {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types/pkg2/package.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types/package.json: *new* - {"pollingInterval":2000} /user/username/projects/myproject/node_modules/package.json: *new* {"pollingInterval":2000} +/user/username/projects/myproject/package.json: *new* + {"pollingInterval":2000} +/user/username/projects/node_modules: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/package.json: *new* + {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} /user/username/projects/myproject/index.ts: *new* {} -/user/username/projects/myproject/node_modules/pkg/package.json: *new* - {} -/user/username/projects/myproject/node_modules/pkg1/package.json: *new* +/user/username/projects/myproject/node_modules/@types/pkg2/index.d.ts: *new* {} /user/username/projects/myproject/node_modules/pkg/import.d.ts: *new* {} -/user/username/projects/myproject/node_modules/@types/pkg2/index.d.ts: *new* +/user/username/projects/myproject/node_modules/pkg/package.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/node_modules/pkg1/package.json: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject: *new* + {} /user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/node_modules/@types: *new* {} -/user/username/projects/myproject: *new* - {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/moduleResolution/watches-for-changes-to-package-json-main-fields.js b/tests/baselines/reference/tscWatch/moduleResolution/watches-for-changes-to-package-json-main-fields.js index 08b9341ba8947..490f7f99a7155 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/watches-for-changes-to-package-json-main-fields.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/watches-for-changes-to-package-json-main-fields.js @@ -97,40 +97,40 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/pkg1/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/pkg1/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/pkg1/node_modules: *new* + {"pollingInterval":500} +/user/username/projects/myproject/packages/pkg1/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/pkg1/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/packages/pkg1/index.ts: *new* {} -/user/username/projects/myproject/packages/pkg2/build/index.d.ts: *new* +/user/username/projects/myproject/packages/pkg1/tsconfig.json: *new* {} /user/username/projects/myproject/packages/pkg2/build/const.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/pkg2/build/index.d.ts: *new* {} /user/username/projects/myproject/packages/pkg2/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/pkg2: *new* - {} /user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/packages/pkg1: *new* {} +/user/username/projects/myproject/packages/pkg2: *new* + {} exitCode:: ExitStatus.undefined @@ -207,36 +207,36 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/packages/pkg1/node_modules: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/pkg1/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/packages/pkg1/node_modules: + {"pollingInterval":500} +/user/username/projects/myproject/packages/pkg1/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/pkg1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/packages/pkg1/index.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/packages/pkg2/package.json: +/user/username/projects/myproject/packages/pkg1/tsconfig.json: {} /user/username/projects/myproject/packages/pkg2/build/other.d.ts: *new* {} +/user/username/projects/myproject/packages/pkg2/package.json: + {} FsWatches *deleted*:: -/user/username/projects/myproject/packages/pkg2/build/index.d.ts: - {} /user/username/projects/myproject/packages/pkg2/build/const.d.ts: {} +/user/username/projects/myproject/packages/pkg2/build/index.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: @@ -323,31 +323,31 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/packages/pkg1/node_modules: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/pkg1/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/packages/pkg1/node_modules: + {"pollingInterval":500} +/user/username/projects/myproject/packages/pkg1/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/pkg1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/packages/pkg1/index.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/packages/pkg1/tsconfig.json: {} -/user/username/projects/myproject/packages/pkg2/package.json: +/user/username/projects/myproject/packages/pkg2/build/const.d.ts: *new* {} /user/username/projects/myproject/packages/pkg2/build/index.d.ts: *new* {} -/user/username/projects/myproject/packages/pkg2/build/const.d.ts: *new* +/user/username/projects/myproject/packages/pkg2/package.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tscWatch/nodenext watch emit/esm-mode-file-is-edited.js b/tests/baselines/reference/tscWatch/nodenext watch emit/esm-mode-file-is-edited.js index 5b5aa6c680233..6b0f7fc1f59ea 100644 --- a/tests/baselines/reference/tscWatch/nodenext watch emit/esm-mode-file-is-edited.js +++ b/tests/baselines/reference/tscWatch/nodenext watch emit/esm-mode-file-is-edited.js @@ -56,13 +56,13 @@ Shape signatures in builder refreshed for:: /project/src/index.ts (used version) FsWatches:: -/project/tsconfig.json: *new* +/a/lib/lib.es2020.full.d.ts: *new* {} /project/src/deps.d.ts: *new* {} /project/src/index.ts: *new* {} -/a/lib/lib.es2020.full.d.ts: *new* +/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/Configure-file-diagnostics-events-are-generated-when-the-config-file-has-errors.js b/tests/baselines/reference/tscWatch/programUpdates/Configure-file-diagnostics-events-are-generated-when-the-config-file-has-errors.js index cbb50b17389ce..70fe89e0b94f8 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/Configure-file-diagnostics-events-are-generated-when-the-config-file-has-errors.js +++ b/tests/baselines/reference/tscWatch/programUpdates/Configure-file-diagnostics-events-are-generated-when-the-config-file-has-errors.js @@ -60,10 +60,10 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/app.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/Options-Diagnostic-locations-reported-correctly-with-changes-in-configFile-contents-when-options-change.js b/tests/baselines/reference/tscWatch/programUpdates/Options-Diagnostic-locations-reported-correctly-with-changes-in-configFile-contents-when-options-change.js index c3ed88d059fd6..e72c277b6df6c 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/Options-Diagnostic-locations-reported-correctly-with-changes-in-configFile-contents-when-options-change.js +++ b/tests/baselines/reference/tscWatch/programUpdates/Options-Diagnostic-locations-reported-correctly-with-changes-in-configFile-contents-when-options-change.js @@ -66,10 +66,10 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/app.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/Proper-errors-document-is-not-contained-in-project.js b/tests/baselines/reference/tscWatch/programUpdates/Proper-errors-document-is-not-contained-in-project.js index 20cd7dd3cd2fe..52b364ae132fa 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/Proper-errors-document-is-not-contained-in-project.js +++ b/tests/baselines/reference/tscWatch/programUpdates/Proper-errors-document-is-not-contained-in-project.js @@ -55,10 +55,10 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/app.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/Reports-errors-when-the-config-file-changes.js b/tests/baselines/reference/tscWatch/programUpdates/Reports-errors-when-the-config-file-changes.js index fa19e1368b0d3..f640273c3b632 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/Reports-errors-when-the-config-file-changes.js +++ b/tests/baselines/reference/tscWatch/programUpdates/Reports-errors-when-the-config-file-changes.js @@ -45,10 +45,10 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/app.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/Updates-diagnostics-when-'--allowArbitraryExtensions'-changes.js b/tests/baselines/reference/tscWatch/programUpdates/Updates-diagnostics-when-'--allowArbitraryExtensions'-changes.js index 89a010af60060..2c4c31c36d6b4 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/Updates-diagnostics-when-'--allowArbitraryExtensions'-changes.js +++ b/tests/baselines/reference/tscWatch/programUpdates/Updates-diagnostics-when-'--allowArbitraryExtensions'-changes.js @@ -56,13 +56,13 @@ Shape signatures in builder refreshed for:: /a.ts (used version) FsWatches:: -/tsconfig.json: *new* - {} /a.ts: *new* {} +/a/lib/lib.d.ts: *new* + {} /b.d.css.ts: *new* {} -/a/lib/lib.d.ts: *new* +/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined @@ -110,12 +110,12 @@ Shape signatures in builder refreshed for:: /a.ts (computed .d.ts) FsWatches:: -/tsconfig.json: - {} /a.ts: {} /a/lib/lib.d.ts: {} +/tsconfig.json: + {} FsWatches *deleted*:: /b.d.css.ts: @@ -166,14 +166,14 @@ Shape signatures in builder refreshed for:: /a.ts (computed .d.ts) FsWatches:: -/tsconfig.json: - {} /a.ts: {} /a/lib/lib.d.ts: {} /b.d.css.ts: *new* {} +/tsconfig.json: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/Updates-diagnostics-when-'--noUnusedLabels'-changes.js b/tests/baselines/reference/tscWatch/programUpdates/Updates-diagnostics-when-'--noUnusedLabels'-changes.js index 7489756b4a0c6..bc7b6da0bfda3 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/Updates-diagnostics-when-'--noUnusedLabels'-changes.js +++ b/tests/baselines/reference/tscWatch/programUpdates/Updates-diagnostics-when-'--noUnusedLabels'-changes.js @@ -45,12 +45,12 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) FsWatches:: -/tsconfig.json: *new* - {} /a.ts: *new* {} /a/lib/lib.d.ts: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tscWatch/programUpdates/add-new-files-to-a-configured-program-without-file-list.js b/tests/baselines/reference/tscWatch/programUpdates/add-new-files-to-a-configured-program-without-file-list.js index 60aed9c6e3a12..4e4232ce6012e 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/add-new-files-to-a-configured-program-without-file-list.js +++ b/tests/baselines/reference/tscWatch/programUpdates/add-new-files-to-a-configured-program-without-file-list.js @@ -45,10 +45,10 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/commonfile1.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -99,14 +99,14 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (computed .d.ts) FsWatches:: -/a/b/tsconfig.json: - {} /a/b/commonfile1.ts: {} -/a/lib/lib.d.ts: - {} /a/b/commonfile2.ts: *new* {} +/a/b/tsconfig.json: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: diff --git a/tests/baselines/reference/tscWatch/programUpdates/add-the-missing-module-file-for-inferred-project-should-remove-the-module-not-found-error.js b/tests/baselines/reference/tscWatch/programUpdates/add-the-missing-module-file-for-inferred-project-should-remove-the-module-not-found-error.js index 4dcfe62cbea11..809a6872e72b2 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/add-the-missing-module-file-for-inferred-project-should-remove-the-module-not-found-error.js +++ b/tests/baselines/reference/tscWatch/programUpdates/add-the-missing-module-file-for-inferred-project-should-remove-the-module-not-found-error.js @@ -47,10 +47,10 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (used version) FsWatches:: -/users/username/projects/project/file1.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/file1.ts: *new* + {} FsWatchesRecursive:: /users/username/projects: *new* @@ -105,10 +105,10 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) FsWatches:: -/users/username/projects/project/file1.ts: - {} /a/lib/lib.d.ts: {} +/users/username/projects/project/file1.ts: + {} /users/username/projects/project/modulefile.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-in-list-of-files).js b/tests/baselines/reference/tscWatch/programUpdates/can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-in-list-of-files).js index c31505a767ea9..2d26c5fa3ab70 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-in-list-of-files).js +++ b/tests/baselines/reference/tscWatch/programUpdates/can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-in-list-of-files).js @@ -48,10 +48,10 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/f1.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -98,14 +98,14 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (computed .d.ts) FsWatches:: -/a/b/tsconfig.json: - {} /a/b/f1.ts: {} -/a/lib/lib.d.ts: - {} /a/b/f2.ts: *new* {} +/a/b/tsconfig.json: + {} +/a/lib/lib.d.ts: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-on-disk).js b/tests/baselines/reference/tscWatch/programUpdates/can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-on-disk).js index 2518cdc8c5221..0b730447fa350 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-on-disk).js +++ b/tests/baselines/reference/tscWatch/programUpdates/can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-on-disk).js @@ -45,10 +45,10 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/f1.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -99,14 +99,14 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (computed .d.ts) FsWatches:: -/a/b/tsconfig.json: - {} /a/b/f1.ts: {} -/a/lib/lib.d.ts: - {} /a/b/f2.ts: *new* {} +/a/b/tsconfig.json: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: diff --git a/tests/baselines/reference/tscWatch/programUpdates/can-correctly-update-configured-project-when-set-of-root-files-has-changed-through-include.js b/tests/baselines/reference/tscWatch/programUpdates/can-correctly-update-configured-project-when-set-of-root-files-has-changed-through-include.js index be5f3a42b0521..5917b5f9332b8 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/can-correctly-update-configured-project-when-set-of-root-files-has-changed-through-include.js +++ b/tests/baselines/reference/tscWatch/programUpdates/can-correctly-update-configured-project-when-set-of-root-files-has-changed-through-include.js @@ -45,19 +45,19 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/project/file1.ts (used version) PolledWatches:: -/user/username/projects/myproject/project/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/project/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/project/file1.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -107,22 +107,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/project/file2.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/project/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/project/node_modules/@types: + {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/project/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/project/file1.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/project/file2.ts: *new* {} +/user/username/projects/myproject/project/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/project: diff --git a/tests/baselines/reference/tscWatch/programUpdates/can-handle-tsconfig-file-name-with-difference-casing.js b/tests/baselines/reference/tscWatch/programUpdates/can-handle-tsconfig-file-name-with-difference-casing.js index b4d5bfe145393..2a9e7bcc8fb61 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/can-handle-tsconfig-file-name-with-difference-casing.js +++ b/tests/baselines/reference/tscWatch/programUpdates/can-handle-tsconfig-file-name-with-difference-casing.js @@ -45,10 +45,10 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/app.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/can-update-configured-project-when-set-of-root-files-was-not-changed.js b/tests/baselines/reference/tscWatch/programUpdates/can-update-configured-project-when-set-of-root-files-was-not-changed.js index dc9bb59c15312..8675d5c2245f5 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/can-update-configured-project-when-set-of-root-files-was-not-changed.js +++ b/tests/baselines/reference/tscWatch/programUpdates/can-update-configured-project-when-set-of-root-files-was-not-changed.js @@ -51,12 +51,12 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/f1.ts: *new* {} /a/b/f2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/change-module-to-none.js b/tests/baselines/reference/tscWatch/programUpdates/change-module-to-none.js index 7f47cd603caec..144527edc044a 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/change-module-to-none.js +++ b/tests/baselines/reference/tscWatch/programUpdates/change-module-to-none.js @@ -46,10 +46,10 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/f1.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/changes-in-files-are-reflected-in-project-structure.js b/tests/baselines/reference/tscWatch/programUpdates/changes-in-files-are-reflected-in-project-structure.js index 3cb997ab5e4b1..f04662f505700 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/changes-in-files-are-reflected-in-project-structure.js +++ b/tests/baselines/reference/tscWatch/programUpdates/changes-in-files-are-reflected-in-project-structure.js @@ -144,10 +144,10 @@ FsWatches:: {} /a/b/f2.ts: {} -/a/lib/lib.d.ts: - {} /a/c/f3.ts: *new* {} +/a/lib/lib.d.ts: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/config-file-includes-the-file.js b/tests/baselines/reference/tscWatch/programUpdates/config-file-includes-the-file.js index 29446f81f9044..00ed1975f06b2 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/config-file-includes-the-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/config-file-includes-the-file.js @@ -57,14 +57,14 @@ Shape signatures in builder refreshed for:: /a/c/f3.ts (used version) FsWatches:: -/a/c/tsconfig.json: *new* +/a/b/f1.ts: *new* {} /a/c/f2.ts: *new* {} -/a/b/f1.ts: *new* - {} /a/c/f3.ts: *new* {} +/a/c/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/config-file-is-deleted.js b/tests/baselines/reference/tscWatch/programUpdates/config-file-is-deleted.js index ff57dd214ba32..ce9d5b884893b 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/config-file-is-deleted.js +++ b/tests/baselines/reference/tscWatch/programUpdates/config-file-is-deleted.js @@ -51,12 +51,12 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/f1.ts: *new* {} /a/b/f2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/correctly-handles-changes-in-lib-section-of-config-file.js b/tests/baselines/reference/tscWatch/programUpdates/correctly-handles-changes-in-lib-section-of-config-file.js index d6505ff07a54f..3ef6a9793666a 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/correctly-handles-changes-in-lib-section-of-config-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/correctly-handles-changes-in-lib-section-of-config-file.js @@ -54,11 +54,11 @@ Shape signatures in builder refreshed for:: /src/app.ts (used version) FsWatches:: -/src/tsconfig.json: *new* +/compiler/lib.es5.d.ts: *new* {} /src/app.ts: *new* {} -/compiler/lib.es5.d.ts: *new* +/src/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -108,13 +108,13 @@ Shape signatures in builder refreshed for:: /src/app.ts (computed .d.ts) FsWatches:: -/src/tsconfig.json: - {} -/src/app.ts: +/compiler/lib.es2015.promise.d.ts: *new* {} /compiler/lib.es5.d.ts: {} -/compiler/lib.es2015.promise.d.ts: *new* +/src/app.ts: + {} +/src/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/correctly-parses-wild-card-directories-from-implicit-glob-when-two-keys-differ-only-in-directory-seperator.js b/tests/baselines/reference/tscWatch/programUpdates/correctly-parses-wild-card-directories-from-implicit-glob-when-two-keys-differ-only-in-directory-seperator.js index c7b0474b45581..17d7a8482d376 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/correctly-parses-wild-card-directories-from-implicit-glob-when-two-keys-differ-only-in-directory-seperator.js +++ b/tests/baselines/reference/tscWatch/programUpdates/correctly-parses-wild-card-directories-from-implicit-glob-when-two-keys-differ-only-in-directory-seperator.js @@ -71,13 +71,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/f1.ts: *new* {} /user/username/projects/myproject/f2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -227,16 +227,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/f1.ts: {} /user/username/projects/myproject/f2.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/new-file.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: diff --git a/tests/baselines/reference/tscWatch/programUpdates/create-configured-project-without-file-list.js b/tests/baselines/reference/tscWatch/programUpdates/create-configured-project-without-file-list.js index 5e9a98a6c3292..fca170445742f 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/create-configured-project-without-file-list.js +++ b/tests/baselines/reference/tscWatch/programUpdates/create-configured-project-without-file-list.js @@ -60,12 +60,12 @@ Shape signatures in builder refreshed for:: /a/b/d/f2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/c/f1.ts: *new* {} /a/b/d/f2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/extended-source-files-are-watched.js b/tests/baselines/reference/tscWatch/programUpdates/extended-source-files-are-watched.js index a2ccb21cdf4c1..49db67d9e3852 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/extended-source-files-are-watched.js +++ b/tests/baselines/reference/tscWatch/programUpdates/extended-source-files-are-watched.js @@ -57,12 +57,12 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/commonfile1.ts: *new* {} /a/b/commonfile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -111,17 +111,17 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: FsWatches:: -/a/b/tsconfig.json: - {} /a/b/commonfile1.ts: {} /a/b/commonfile2.ts: {} -/a/lib/lib.d.ts: +/a/b/first.tsconfig.json: *new* {} /a/b/second.tsconfig.json: *new* {} -/a/b/first.tsconfig.json: *new* +/a/b/tsconfig.json: + {} +/a/lib/lib.d.ts: {} exitCode:: ExitStatus.undefined @@ -251,20 +251,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: FsWatches:: -/a/b/tsconfig.json: - {} /a/b/commonfile1.ts: {} /a/b/commonfile2.ts: {} +/a/b/tsconfig.json: + {} /a/lib/lib.d.ts: {} FsWatches *deleted*:: -/a/b/second.tsconfig.json: - {} /a/b/first.tsconfig.json: {} +/a/b/second.tsconfig.json: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/file-in-files-is-deleted.js b/tests/baselines/reference/tscWatch/programUpdates/file-in-files-is-deleted.js index 296f2695f742a..1f42554e85f5b 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/file-in-files-is-deleted.js +++ b/tests/baselines/reference/tscWatch/programUpdates/file-in-files-is-deleted.js @@ -51,12 +51,12 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/f1.ts: *new* {} /a/b/f2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -113,10 +113,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: - {} /a/b/f1.ts: {} +/a/b/tsconfig.json: + {} /a/lib/lib.d.ts: {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/files-explicitly-excluded-in-config-file.js b/tests/baselines/reference/tscWatch/programUpdates/files-explicitly-excluded-in-config-file.js index e4280b1b7b769..e8140c6f46616 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/files-explicitly-excluded-in-config-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/files-explicitly-excluded-in-config-file.js @@ -57,12 +57,12 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/commonfile1.ts: *new* {} /a/b/commonfile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/handle-recreated-files-correctly.js b/tests/baselines/reference/tscWatch/programUpdates/handle-recreated-files-correctly.js index 4a4363bc6de5e..069a67434d63e 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/handle-recreated-files-correctly.js +++ b/tests/baselines/reference/tscWatch/programUpdates/handle-recreated-files-correctly.js @@ -57,12 +57,12 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/commonfile1.ts: *new* {} /a/b/commonfile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -165,10 +165,10 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (computed .d.ts) FsWatches:: -/a/b/tsconfig.json: - {} /a/b/commonfile1.ts: {} +/a/b/tsconfig.json: + {} /a/lib/lib.d.ts: {} @@ -226,14 +226,14 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (computed .d.ts) FsWatches:: -/a/b/tsconfig.json: - {} /a/b/commonfile1.ts: {} -/a/lib/lib.d.ts: - {} /a/b/commonfile2.ts: *new* {} +/a/b/tsconfig.json: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: diff --git a/tests/baselines/reference/tscWatch/programUpdates/handles-the-missing-files---that-were-added-to-program-because-they-were-added-with-tripleSlashRefs.js b/tests/baselines/reference/tscWatch/programUpdates/handles-the-missing-files---that-were-added-to-program-because-they-were-added-with-tripleSlashRefs.js index 99972004426ca..2a1e46f665f1c 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/handles-the-missing-files---that-were-added-to-program-because-they-were-added-with-tripleSlashRefs.js +++ b/tests/baselines/reference/tscWatch/programUpdates/handles-the-missing-files---that-were-added-to-program-because-they-were-added-with-tripleSlashRefs.js @@ -118,10 +118,10 @@ Shape signatures in builder refreshed for:: FsWatches:: /a/b/commonfile1.ts: {} -/a/lib/lib.d.ts: - {} /a/b/commonfile2.ts: *new* {} +/a/lib/lib.d.ts: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/if-config-file-doesnt-have-errors,-they-are-not-reported.js b/tests/baselines/reference/tscWatch/programUpdates/if-config-file-doesnt-have-errors,-they-are-not-reported.js index d2eadb5298272..907d9092b92f9 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/if-config-file-doesnt-have-errors,-they-are-not-reported.js +++ b/tests/baselines/reference/tscWatch/programUpdates/if-config-file-doesnt-have-errors,-they-are-not-reported.js @@ -47,10 +47,10 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/app.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/non-existing-directories-listed-in-config-file-input-array-should-be-tolerated-without-crashing-the-server.js b/tests/baselines/reference/tscWatch/programUpdates/non-existing-directories-listed-in-config-file-input-array-should-be-tolerated-without-crashing-the-server.js index bc1d34e915f62..497d09f41aa6d 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/non-existing-directories-listed-in-config-file-input-array-should-be-tolerated-without-crashing-the-server.js +++ b/tests/baselines/reference/tscWatch/programUpdates/non-existing-directories-listed-in-config-file-input-array-should-be-tolerated-without-crashing-the-server.js @@ -46,10 +46,10 @@ No shapes updated in the builder:: PolledWatches:: /a/b/app: *new* {"pollingInterval":500} -/a/b/test: *new* - {"pollingInterval":500} /a/b/something: *new* {"pollingInterval":500} +/a/b/test: *new* + {"pollingInterval":500} FsWatches:: /a/b/tsconfig.json: *new* diff --git a/tests/baselines/reference/tscWatch/programUpdates/rename-a-module-file-and-rename-back-should-restore-the-states-for-configured-projects.js b/tests/baselines/reference/tscWatch/programUpdates/rename-a-module-file-and-rename-back-should-restore-the-states-for-configured-projects.js index 0bca59ce52fdd..32b00c2de5a6d 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/rename-a-module-file-and-rename-back-should-restore-the-states-for-configured-projects.js +++ b/tests/baselines/reference/tscWatch/programUpdates/rename-a-module-file-and-rename-back-should-restore-the-states-for-configured-projects.js @@ -51,19 +51,19 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1.ts: *new* {} /users/username/projects/project/modulefile.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -133,24 +133,24 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/modulefile1.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} /users/username/projects/project/modulefile: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} -/users/username/projects/project/file1.ts: - {} /a/lib/lib.d.ts: {} /users/username/projects/project: *new* {} +/users/username/projects/project/file1.ts: + {} /users/username/projects/project/modulefile1.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatches *deleted*:: /users/username/projects/project/modulefile.ts: @@ -214,24 +214,24 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/project/file1.ts: {} -/a/lib/lib.d.ts: - {} /users/username/projects/project/modulefile.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatches *deleted*:: /users/username/projects/project: diff --git a/tests/baselines/reference/tscWatch/programUpdates/rename-a-module-file-and-rename-back-should-restore-the-states-for-inferred-projects.js b/tests/baselines/reference/tscWatch/programUpdates/rename-a-module-file-and-rename-back-should-restore-the-states-for-inferred-projects.js index c4fab2a09a8c8..3c5111a8cc968 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/rename-a-module-file-and-rename-back-should-restore-the-states-for-inferred-projects.js +++ b/tests/baselines/reference/tscWatch/programUpdates/rename-a-module-file-and-rename-back-should-restore-the-states-for-inferred-projects.js @@ -48,12 +48,12 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (used version) FsWatches:: +/a/lib/lib.d.ts: *new* + {} /users/username/projects/project/file1.ts: *new* {} /users/username/projects/project/modulefile.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} exitCode:: ExitStatus.undefined @@ -115,10 +115,10 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) FsWatches:: -/users/username/projects/project/file1.ts: - {} /a/lib/lib.d.ts: {} +/users/username/projects/project/file1.ts: + {} FsWatches *deleted*:: /users/username/projects/project/modulefile.ts: @@ -172,10 +172,10 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) FsWatches:: -/users/username/projects/project/file1.ts: - {} /a/lib/lib.d.ts: {} +/users/username/projects/project/file1.ts: + {} /users/username/projects/project/modulefile.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/reports-errors-correctly-with-file-not-in-rootDir.js b/tests/baselines/reference/tscWatch/programUpdates/reports-errors-correctly-with-file-not-in-rootDir.js index 0c912e08557dc..84130e264a694 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/reports-errors-correctly-with-file-not-in-rootDir.js +++ b/tests/baselines/reference/tscWatch/programUpdates/reports-errors-correctly-with-file-not-in-rootDir.js @@ -62,13 +62,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/a.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/b.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/a.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/reports-errors-correctly-with-isolatedModules.js b/tests/baselines/reference/tscWatch/programUpdates/reports-errors-correctly-with-isolatedModules.js index d43e8219cb068..a6b0b4bbd3223 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/reports-errors-correctly-with-isolatedModules.js +++ b/tests/baselines/reference/tscWatch/programUpdates/reports-errors-correctly-with-isolatedModules.js @@ -58,13 +58,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} /user/username/projects/myproject/b.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/should-handle-non-existing-directories-in-config-file.js b/tests/baselines/reference/tscWatch/programUpdates/should-handle-non-existing-directories-in-config-file.js index 4748c0e8e4ffc..a1e4d15a46d4d 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/should-handle-non-existing-directories-in-config-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/should-handle-non-existing-directories-in-config-file.js @@ -49,11 +49,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /a/src/app.ts: *new* {} -/a/lib/lib.d.ts: *new* +/a/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/should-ignore-non-existing-files-specified-in-the-config-file.js b/tests/baselines/reference/tscWatch/programUpdates/should-ignore-non-existing-files-specified-in-the-config-file.js index df499fb022d73..58dc372e43254 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/should-ignore-non-existing-files-specified-in-the-config-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/should-ignore-non-existing-files-specified-in-the-config-file.js @@ -65,10 +65,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/commonfile1.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/declarationDir-is-specified.js b/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/declarationDir-is-specified.js index 80c5502c78131..dbf4e814780da 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/declarationDir-is-specified.js +++ b/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/declarationDir-is-specified.js @@ -57,20 +57,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/file1.ts: *new* {} /user/username/projects/myproject/src/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: *new* - {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/src: *new* + {} exitCode:: ExitStatus.undefined @@ -153,22 +153,22 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/file1.ts: {} /user/username/projects/myproject/src/file2.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/src/file3.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} /user/username/projects/myproject: {} +/user/username/projects/myproject/src: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/when-outDir-and-declarationDir-is-specified.js b/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/when-outDir-and-declarationDir-is-specified.js index 1dff997597d92..61dfa9b935f76 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/when-outDir-and-declarationDir-is-specified.js +++ b/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/when-outDir-and-declarationDir-is-specified.js @@ -57,20 +57,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/file1.ts: *new* {} /user/username/projects/myproject/src/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: *new* - {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/src: *new* + {} exitCode:: ExitStatus.undefined @@ -153,22 +153,22 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/file1.ts: {} /user/username/projects/myproject/src/file2.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/src/file3.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} /user/username/projects/myproject: {} +/user/username/projects/myproject/src: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/when-outDir-is-specified.js b/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/when-outDir-is-specified.js index 15edf53e91623..ef051a9c12327 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/when-outDir-is-specified.js +++ b/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/when-outDir-is-specified.js @@ -57,20 +57,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/file1.ts: *new* {} /user/username/projects/myproject/src/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: *new* - {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/src: *new* + {} exitCode:: ExitStatus.undefined @@ -145,22 +145,22 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/file1.ts: {} /user/username/projects/myproject/src/file2.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/src/file3.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} /user/username/projects/myproject: {} +/user/username/projects/myproject/src: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/with-outFile.js b/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/with-outFile.js index ec51d45cf53d8..369d9edc55ae3 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/with-outFile.js +++ b/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/with-outFile.js @@ -51,20 +51,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/file1.ts: *new* {} /user/username/projects/myproject/src/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: *new* - {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/src: *new* + {} exitCode:: ExitStatus.undefined @@ -134,22 +134,22 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/file1.ts: {} /user/username/projects/myproject/src/file2.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/src/file3.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} /user/username/projects/myproject: {} +/user/username/projects/myproject/src: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/without-outDir-or-outFile-is-specified-with-declaration-enabled.js b/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/without-outDir-or-outFile-is-specified-with-declaration-enabled.js index 44958e96c2243..952eb17ca4c00 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/without-outDir-or-outFile-is-specified-with-declaration-enabled.js +++ b/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/without-outDir-or-outFile-is-specified-with-declaration-enabled.js @@ -57,20 +57,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/file1.ts: *new* {} /user/username/projects/myproject/src/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: *new* - {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/src: *new* + {} exitCode:: ExitStatus.undefined @@ -153,22 +153,22 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/file1.ts: {} /user/username/projects/myproject/src/file2.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/src/file3.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} /user/username/projects/myproject: {} +/user/username/projects/myproject/src: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/without-outDir-or-outFile-is-specified.js b/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/without-outDir-or-outFile-is-specified.js index 1f7a54d4b286d..8380050766b2a 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/without-outDir-or-outFile-is-specified.js +++ b/tests/baselines/reference/tscWatch/programUpdates/should-not-trigger-recompilation-because-of-program-emit/without-outDir-or-outFile-is-specified.js @@ -57,20 +57,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/file1.ts: *new* {} /user/username/projects/myproject/src/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: *new* - {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/src: *new* + {} exitCode:: ExitStatus.undefined @@ -145,22 +145,22 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/file1.ts: {} /user/username/projects/myproject/src/file2.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/src/file3.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} /user/username/projects/myproject: {} +/user/username/projects/myproject/src: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/should-properly-handle-module-resolution-changes-in-config-file.js b/tests/baselines/reference/tscWatch/programUpdates/should-properly-handle-module-resolution-changes-in-config-file.js index e54fd78da7914..e6ee6f573ef9c 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/should-properly-handle-module-resolution-changes-in-config-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/should-properly-handle-module-resolution-changes-in-config-file.js @@ -59,12 +59,12 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1.ts: *new* {} /a/b/node_modules/module1.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -116,10 +116,10 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (computed .d.ts) FsWatches:: -/a/b/tsconfig.json: - {} /a/b/file1.ts: {} +/a/b/tsconfig.json: + {} /a/lib/lib.d.ts: {} /a/module1.ts: *new* diff --git a/tests/baselines/reference/tscWatch/programUpdates/should-reflect-change-in-config-file.js b/tests/baselines/reference/tscWatch/programUpdates/should-reflect-change-in-config-file.js index 83e26a0ebede5..ee6e408afd9a3 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/should-reflect-change-in-config-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/should-reflect-change-in-config-file.js @@ -60,12 +60,12 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/commonfile1.ts: *new* {} /a/b/commonfile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -169,10 +169,10 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (computed .d.ts) FsWatches:: -/a/b/tsconfig.json: - {} /a/b/commonfile1.ts: {} +/a/b/tsconfig.json: + {} /a/lib/lib.d.ts: {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/should-tolerate-config-file-errors-and-still-try-to-build-a-project.js b/tests/baselines/reference/tscWatch/programUpdates/should-tolerate-config-file-errors-and-still-try-to-build-a-project.js index 0dc0940b87826..ad8656d7ec300 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/should-tolerate-config-file-errors-and-still-try-to-build-a-project.js +++ b/tests/baselines/reference/tscWatch/programUpdates/should-tolerate-config-file-errors-and-still-try-to-build-a-project.js @@ -62,12 +62,12 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/commonfile1.ts: *new* {} /a/b/commonfile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/two-watch-programs-are-not-affected-by-each-other.js b/tests/baselines/reference/tscWatch/programUpdates/two-watch-programs-are-not-affected-by-each-other.js index 30ab869c57582..82805a783f891 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/two-watch-programs-are-not-affected-by-each-other.js +++ b/tests/baselines/reference/tscWatch/programUpdates/two-watch-programs-are-not-affected-by-each-other.js @@ -108,14 +108,14 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) FsWatches:: +/a/b/f1.ts: *new* + {} /a/c/f2.ts: {} /a/d/f3.ts: {} /a/lib/lib.d.ts: {} -/a/b/f1.ts: *new* - {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/types-should-load-from-config-file-path-if-config-exists.js b/tests/baselines/reference/tscWatch/programUpdates/types-should-load-from-config-file-path-if-config-exists.js index 75fdbd49eea8d..8a6b449a4a51d 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/types-should-load-from-config-file-path-if-config-exists.js +++ b/tests/baselines/reference/tscWatch/programUpdates/types-should-load-from-config-file-path-if-config-exists.js @@ -51,12 +51,12 @@ Shape signatures in builder refreshed for:: /a/b/node_modules/@types/node/index.d.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/app.ts: *new* {} /a/b/node_modules/@types/node/index.d.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/types-should-not-load-from-config-file-path-if-config-exists-but-does-not-specifies-typeRoots.js b/tests/baselines/reference/tscWatch/programUpdates/types-should-not-load-from-config-file-path-if-config-exists-but-does-not-specifies-typeRoots.js index 90b61453d8787..716b5ff9b3f40 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/types-should-not-load-from-config-file-path-if-config-exists-but-does-not-specifies-typeRoots.js +++ b/tests/baselines/reference/tscWatch/programUpdates/types-should-not-load-from-config-file-path-if-config-exists-but-does-not-specifies-typeRoots.js @@ -55,10 +55,10 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/app.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/programUpdates/updates-diagnostics-and-emit-for-decorators.js b/tests/baselines/reference/tscWatch/programUpdates/updates-diagnostics-and-emit-for-decorators.js index ed2e7fe25f368..cc323419fa41d 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/updates-diagnostics-and-emit-for-decorators.js +++ b/tests/baselines/reference/tscWatch/programUpdates/updates-diagnostics-and-emit-for-decorators.js @@ -58,13 +58,13 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) FsWatches:: -/tsconfig.json: *new* - {} /a.ts: *new* {} +/a/lib/lib.d.ts: *new* + {} /b.ts: *new* {} -/a/lib/lib.d.ts: *new* +/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/updates-diagnostics-and-emit-when-useDefineForClassFields-changes.js b/tests/baselines/reference/tscWatch/programUpdates/updates-diagnostics-and-emit-when-useDefineForClassFields-changes.js index 7fd9ea74d2254..526f86924e35a 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/updates-diagnostics-and-emit-when-useDefineForClassFields-changes.js +++ b/tests/baselines/reference/tscWatch/programUpdates/updates-diagnostics-and-emit-when-useDefineForClassFields-changes.js @@ -51,12 +51,12 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) FsWatches:: -/tsconfig.json: *new* - {} /a.ts: *new* {} /a/lib/lib.d.ts: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tscWatch/programUpdates/updates-emit-on-jsx-option-change.js b/tests/baselines/reference/tscWatch/programUpdates/updates-emit-on-jsx-option-change.js index 647886b443209..89d630fe0142b 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/updates-emit-on-jsx-option-change.js +++ b/tests/baselines/reference/tscWatch/programUpdates/updates-emit-on-jsx-option-change.js @@ -52,11 +52,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/index.tsx: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-and-emit-when-importsNotUsedAsValues-changes.js b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-and-emit-when-importsNotUsedAsValues-changes.js index ef47f1984aff6..10088f16c07ce 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-and-emit-when-importsNotUsedAsValues-changes.js +++ b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-and-emit-when-importsNotUsedAsValues-changes.js @@ -58,13 +58,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} /user/username/projects/myproject/b.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-correctly-when-declaration-emit-is-disabled-in-compiler-options.js b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-correctly-when-declaration-emit-is-disabled-in-compiler-options.js index 8e3e8f70806ec..01f2db0cee469 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-correctly-when-declaration-emit-is-disabled-in-compiler-options.js +++ b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-correctly-when-declaration-emit-is-disabled-in-compiler-options.js @@ -61,13 +61,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} /user/username/projects/myproject/b.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-module-file-with-global-definitions-changes/with-default-options.js b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-module-file-with-global-definitions-changes/with-default-options.js index e6ff428ef36f0..c0b33c969b2e9 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-module-file-with-global-definitions-changes/with-default-options.js +++ b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-module-file-with-global-definitions-changes/with-default-options.js @@ -67,10 +67,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-module-file-with-global-definitions-changes/with-skipDefaultLibCheck.js b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-module-file-with-global-definitions-changes/with-skipDefaultLibCheck.js index 94dc6f53fb766..4f3fa2766755e 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-module-file-with-global-definitions-changes/with-skipDefaultLibCheck.js +++ b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-module-file-with-global-definitions-changes/with-skipDefaultLibCheck.js @@ -62,10 +62,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-module-file-with-global-definitions-changes/with-skipLibCheck.js b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-module-file-with-global-definitions-changes/with-skipLibCheck.js index 9d3fab2abd552..912cb51fb03fd 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-module-file-with-global-definitions-changes/with-skipLibCheck.js +++ b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-module-file-with-global-definitions-changes/with-skipLibCheck.js @@ -62,10 +62,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-non-module-file-changes/with-default-options.js b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-non-module-file-changes/with-default-options.js index 3094d2e15edf1..06b022fb2e10f 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-non-module-file-changes/with-default-options.js +++ b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-non-module-file-changes/with-default-options.js @@ -64,10 +64,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-non-module-file-changes/with-skipDefaultLibCheck.js b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-non-module-file-changes/with-skipDefaultLibCheck.js index ac6690dea26dc..3fffb532d0f7d 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-non-module-file-changes/with-skipDefaultLibCheck.js +++ b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-non-module-file-changes/with-skipDefaultLibCheck.js @@ -59,10 +59,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-non-module-file-changes/with-skipLibCheck.js b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-non-module-file-changes/with-skipLibCheck.js index 6d8a9d2164dc6..dc2a437125b86 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-non-module-file-changes/with-skipLibCheck.js +++ b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-non-module-file-changes/with-skipLibCheck.js @@ -59,10 +59,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-when-ambient-modules-of-program-changes.js b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-when-ambient-modules-of-program-changes.js index 274307432dd2c..534ae57d56005 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-when-ambient-modules-of-program-changes.js +++ b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-when-ambient-modules-of-program-changes.js @@ -53,11 +53,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -135,14 +135,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/a.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/b.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -193,11 +193,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/a.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-when-forceConsistentCasingInFileNames-changes.js b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-when-forceConsistentCasingInFileNames-changes.js index 40ad73bce4767..6ba2018bb3f44 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-when-forceConsistentCasingInFileNames-changes.js +++ b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-when-forceConsistentCasingInFileNames-changes.js @@ -51,13 +51,13 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) FsWatches:: -/tsconfig.json: *new* - {} /a.ts: *new* {} +/a/lib/lib.d.ts: *new* + {} /b.ts: *new* {} -/a/lib/lib.d.ts: *new* +/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-when-noErrorTruncation-changes.js b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-when-noErrorTruncation-changes.js index afddec279b368..b580d7c7d596d 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-when-noErrorTruncation-changes.js +++ b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-when-noErrorTruncation-changes.js @@ -65,11 +65,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-when-strictNullChecks-changes.js b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-when-strictNullChecks-changes.js index c8b3ddc21e7d8..05b22ae6adb69 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/updates-errors-when-strictNullChecks-changes.js +++ b/tests/baselines/reference/tscWatch/programUpdates/updates-errors-when-strictNullChecks-changes.js @@ -52,11 +52,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/updates-moduleResolution-when-resolveJsonModule-changes.js b/tests/baselines/reference/tscWatch/programUpdates/updates-moduleResolution-when-resolveJsonModule-changes.js index cfcc523875fd2..b184f08010659 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/updates-moduleResolution-when-resolveJsonModule-changes.js +++ b/tests/baselines/reference/tscWatch/programUpdates/updates-moduleResolution-when-resolveJsonModule-changes.js @@ -61,13 +61,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/a.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/a.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -125,16 +125,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/a.ts: +/a/lib/lib.d.ts: {} /user/username/projects/myproject: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/a.ts: {} /user/username/projects/myproject/data.json: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: diff --git a/tests/baselines/reference/tscWatch/programUpdates/watched-files-when-file-is-deleted-and-new-file-is-added-as-part-of-change.js b/tests/baselines/reference/tscWatch/programUpdates/watched-files-when-file-is-deleted-and-new-file-is-added-as-part-of-change.js index bae18cf66c908..de1bfa54d46a2 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/watched-files-when-file-is-deleted-and-new-file-is-added-as-part-of-change.js +++ b/tests/baselines/reference/tscWatch/programUpdates/watched-files-when-file-is-deleted-and-new-file-is-added-as-part-of-change.js @@ -49,11 +49,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/username/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /home/username/project/src/file1.ts: *new* {} -/a/lib/lib.d.ts: *new* +/home/username/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -105,12 +105,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/username/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /home/username/project/src/file2.ts: *new* {} +/home/username/project/tsconfig.json: + {} FsWatches *deleted*:: /home/username/project/src/file1.ts: diff --git a/tests/baselines/reference/tscWatch/programUpdates/when-changing-`allowImportingTsExtensions`-of-config-file.js b/tests/baselines/reference/tscWatch/programUpdates/when-changing-`allowImportingTsExtensions`-of-config-file.js index e233043723744..4f3479953a36b 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/when-changing-`allowImportingTsExtensions`-of-config-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/when-changing-`allowImportingTsExtensions`-of-config-file.js @@ -76,13 +76,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} /user/username/projects/myproject/b.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/when-creating-extensionless-file.js b/tests/baselines/reference/tscWatch/programUpdates/when-creating-extensionless-file.js index 246e8ef3612ea..d353d0fac739d 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/when-creating-extensionless-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/when-creating-extensionless-file.js @@ -64,11 +64,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/index.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/when-creating-new-file-in-symlinked-folder.js b/tests/baselines/reference/tscWatch/programUpdates/when-creating-new-file-in-symlinked-folder.js index 2aa0deadb1f4d..3b9194e0606f1 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/when-creating-new-file-in-symlinked-folder.js +++ b/tests/baselines/reference/tscWatch/programUpdates/when-creating-new-file-in-symlinked-folder.js @@ -74,13 +74,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/client/folder1/module1.ts: *new* {} /user/username/projects/myproject/client/linktofolder2/module2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -160,16 +160,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/client/folder1/module1.ts: {} /user/username/projects/myproject/client/linktofolder2/module2.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/client/linktofolder2/module3.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/client: diff --git a/tests/baselines/reference/tscWatch/programUpdates/when-new-file-is-added-to-the-referenced-project.js b/tests/baselines/reference/tscWatch/programUpdates/when-new-file-is-added-to-the-referenced-project.js index 15d9d898534d5..79ed59be5df83 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/when-new-file-is-added-to-the-referenced-project.js +++ b/tests/baselines/reference/tscWatch/programUpdates/when-new-file-is-added-to-the-referenced-project.js @@ -80,25 +80,25 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/projects/project2/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: *new* - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/projects/project1/class1.d.ts: *new* {} +/user/username/projects/myproject/projects/project1/tsconfig.json: *new* + {} /user/username/projects/myproject/projects/project2/class2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/projects/project2/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -234,27 +234,27 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/class3.d.ts: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} /user/username/projects/myproject/projects/project2/class2.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatchesRecursive:: @@ -274,11 +274,11 @@ declare class class3 {} PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} @@ -288,15 +288,15 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} /user/username/projects/myproject/projects/project2/class2.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatchesRecursive:: @@ -349,27 +349,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/user/username/projects/myproject/projects/project2/class2.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project1/tsconfig.json: {} -/user/username/projects/myproject/projects/project1/class3.d.ts: *new* +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatchesRecursive:: @@ -530,27 +530,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/class3.d.ts: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} /user/username/projects/myproject/projects/project2/class2.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatches *deleted*:: @@ -635,11 +635,11 @@ declare class class3 {} PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} @@ -649,15 +649,15 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} /user/username/projects/myproject/projects/project2/class2.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatchesRecursive:: @@ -710,27 +710,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/user/username/projects/myproject/projects/project2/class2.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project1/tsconfig.json: {} -/user/username/projects/myproject/projects/project1/class3.d.ts: *new* +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/when-skipLibCheck-and-skipDefaultLibCheck-changes.js b/tests/baselines/reference/tscWatch/programUpdates/when-skipLibCheck-and-skipDefaultLibCheck-changes.js index 41f4192c0d06a..fbcdccabb4cbb 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/when-skipLibCheck-and-skipDefaultLibCheck-changes.js +++ b/tests/baselines/reference/tscWatch/programUpdates/when-skipLibCheck-and-skipDefaultLibCheck-changes.js @@ -79,13 +79,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} /user/username/projects/myproject/b.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/works-correctly-when-config-file-is-changed-but-its-content-havent.js b/tests/baselines/reference/tscWatch/programUpdates/works-correctly-when-config-file-is-changed-but-its-content-havent.js index 66b9911a9e82f..8376cbdbcc9b8 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/works-correctly-when-config-file-is-changed-but-its-content-havent.js +++ b/tests/baselines/reference/tscWatch/programUpdates/works-correctly-when-config-file-is-changed-but-its-content-havent.js @@ -54,12 +54,12 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/commonfile1.ts: *new* {} /a/b/commonfile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js b/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js index 75f8882c8a2da..c56fdfd47b407 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js @@ -498,29 +498,29 @@ Dependencies for:: /user/username/projects/sample1/core/index.d.ts PolledWatches:: -/user/username/projects/sample1/tests/node_modules/@types: *new* +/user/username/projects/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/sample1/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: *new* +/user/username/projects/sample1/tests/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/sample1/tests/tsconfig.json: *new* - {} -/user/username/projects/sample1/core/tsconfig.json: *new* - {} -/user/username/projects/sample1/logic/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/sample1/tests/index.ts: *new* +/user/username/projects/sample1/core/anothermodule.d.ts: *new* {} /user/username/projects/sample1/core/index.d.ts: *new* {} +/user/username/projects/sample1/core/tsconfig.json: *new* + {} /user/username/projects/sample1/logic/index.d.ts: *new* {} -/user/username/projects/sample1/core/anothermodule.d.ts: *new* +/user/username/projects/sample1/logic/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/sample1/tests/index.ts: *new* + {} +/user/username/projects/sample1/tests/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -1121,29 +1121,29 @@ Dependencies for:: /user/username/projects/sample1/core/index.d.ts PolledWatches:: -/user/username/projects/sample1/tests/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} /user/username/projects/sample1/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/sample1/tests/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/sample1/tests/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/sample1/core/tsconfig.json: +/user/username/projects/sample1/core/anothermodule.d.ts: {} -/user/username/projects/sample1/logic/tsconfig.json: +/user/username/projects/sample1/core/index.d.ts: {} -/user/username/projects/sample1/tests/index.ts: +/user/username/projects/sample1/core/tsconfig.json: {} -/user/username/projects/sample1/core/index.d.ts: +/user/username/projects/sample1/logic/decls/index.d.ts: *new* {} -/user/username/projects/sample1/core/anothermodule.d.ts: +/user/username/projects/sample1/logic/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/sample1/tests/index.ts: {} -/user/username/projects/sample1/logic/decls/index.d.ts: *new* +/user/username/projects/sample1/tests/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-in-different-folders-with-no-files-clause.js b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-in-different-folders-with-no-files-clause.js index b0456e0e7f6cd..522d37b9d8af0 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-in-different-folders-with-no-files-clause.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-in-different-folders-with-no-files-clause.js @@ -289,42 +289,42 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/transitivereferences/c/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/transitivereferences/b/tsconfig.json: *new* +/user/username/projects/transitivereferences: *new* + {} +/user/username/projects/transitivereferences/a/index.d.ts: *new* {} /user/username/projects/transitivereferences/a/tsconfig.json: *new* {} -/user/username/projects/transitivereferences/c/index.ts: *new* +/user/username/projects/transitivereferences/b/index.d.ts: *new* {} -/user/username/projects/transitivereferences: *new* +/user/username/projects/transitivereferences/b/tsconfig.json: *new* {} -/user/username/projects/transitivereferences/b/index.d.ts: *new* +/user/username/projects/transitivereferences/c/index.ts: *new* {} -/user/username/projects/transitivereferences/a/index.d.ts: *new* +/user/username/projects/transitivereferences/c/tsconfig.json: *new* {} /user/username/projects/transitivereferences/refs/a.d.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/transitivereferences/b: *new* - {} /user/username/projects/transitivereferences/a: *new* {} -/user/username/projects/transitivereferences/refs: *new* +/user/username/projects/transitivereferences/b: *new* {} /user/username/projects/transitivereferences/c: *new* {} +/user/username/projects/transitivereferences/refs: *new* + {} exitCode:: ExitStatus.undefined @@ -588,29 +588,29 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: - {} -/user/username/projects/transitivereferences/b/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/transitivereferences/a/tsconfig.json: +/user/username/projects/transitivereferences: {} -/user/username/projects/transitivereferences/c/index.ts: +/user/username/projects/transitivereferences/a/index.d.ts: {} -/user/username/projects/transitivereferences: +/user/username/projects/transitivereferences/a/tsconfig.json: {} /user/username/projects/transitivereferences/b/index.d.ts: {} -/user/username/projects/transitivereferences/a/index.d.ts: +/user/username/projects/transitivereferences/b/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/transitivereferences/c/index.ts: + {} +/user/username/projects/transitivereferences/c/tsconfig.json: {} /user/username/projects/transitivereferences/nrefs/a.d.ts: *new* {} @@ -620,10 +620,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/transitivereferences/b: - {} /user/username/projects/transitivereferences/a: {} +/user/username/projects/transitivereferences/b: + {} /user/username/projects/transitivereferences/c: {} /user/username/projects/transitivereferences/nrefs: *new* @@ -730,29 +730,29 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: - {} -/user/username/projects/transitivereferences/b/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/transitivereferences/a/tsconfig.json: +/user/username/projects/transitivereferences: {} -/user/username/projects/transitivereferences/c/index.ts: +/user/username/projects/transitivereferences/a/index.d.ts: {} -/user/username/projects/transitivereferences: +/user/username/projects/transitivereferences/a/tsconfig.json: {} /user/username/projects/transitivereferences/b/index.d.ts: {} -/user/username/projects/transitivereferences/a/index.d.ts: +/user/username/projects/transitivereferences/b/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/transitivereferences/c/index.ts: + {} +/user/username/projects/transitivereferences/c/tsconfig.json: {} /user/username/projects/transitivereferences/refs/a.d.ts: *new* {} @@ -762,10 +762,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/transitivereferences/b: - {} /user/username/projects/transitivereferences/a: {} +/user/username/projects/transitivereferences/b: + {} /user/username/projects/transitivereferences/c: {} /user/username/projects/transitivereferences/refs: *new* @@ -853,48 +853,48 @@ Dependencies for:: /user/username/projects/transitiveReferences/nrefs/a.d.ts PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/transitivereferences/b/tsconfig.json: +/user/username/projects/transitivereferences: {} /user/username/projects/transitivereferences/a/tsconfig.json: {} -/user/username/projects/transitivereferences/c/index.ts: - {} -/user/username/projects/transitivereferences: - {} /user/username/projects/transitivereferences/b/index.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/transitivereferences/b/tsconfig.json: {} -/user/username/projects/transitivereferences/refs/a.d.ts: +/user/username/projects/transitivereferences/c/index.ts: + {} +/user/username/projects/transitivereferences/c/tsconfig.json: {} /user/username/projects/transitivereferences/nrefs/a.d.ts: *new* {} +/user/username/projects/transitivereferences/refs/a.d.ts: + {} FsWatches *deleted*:: /user/username/projects/transitivereferences/a/index.d.ts: {} FsWatchesRecursive:: -/user/username/projects/transitivereferences/b: - {} /user/username/projects/transitivereferences/a: {} -/user/username/projects/transitivereferences/c: +/user/username/projects/transitivereferences/b: {} -/user/username/projects/transitivereferences/refs: +/user/username/projects/transitivereferences/c: {} /user/username/projects/transitivereferences/nrefs: *new* {} +/user/username/projects/transitivereferences/refs: + {} exitCode:: ExitStatus.undefined @@ -965,27 +965,27 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/transitivereferences/b/tsconfig.json: +/user/username/projects/transitivereferences: {} /user/username/projects/transitivereferences/a/tsconfig.json: {} -/user/username/projects/transitivereferences/c/index.ts: +/user/username/projects/transitivereferences/b/index.d.ts: {} -/user/username/projects/transitivereferences: +/user/username/projects/transitivereferences/b/tsconfig.json: {} -/user/username/projects/transitivereferences/b/index.d.ts: +/user/username/projects/transitivereferences/c/index.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/transitivereferences/c/tsconfig.json: {} /user/username/projects/transitivereferences/refs/a.d.ts: {} @@ -995,10 +995,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/transitivereferences/b: - {} /user/username/projects/transitivereferences/a: {} +/user/username/projects/transitivereferences/b: + {} /user/username/projects/transitivereferences/c: {} /user/username/projects/transitivereferences/refs: @@ -1089,28 +1089,28 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.ts PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/transitivereferences: + {} +/user/username/projects/transitivereferences/b/index.ts: *new* {} /user/username/projects/transitivereferences/b/tsconfig.json: {} /user/username/projects/transitivereferences/c/index.ts: {} -/user/username/projects/transitivereferences: - {} -/a/lib/lib.d.ts: +/user/username/projects/transitivereferences/c/tsconfig.json: {} /user/username/projects/transitivereferences/refs/a.d.ts: {} -/user/username/projects/transitivereferences/b/index.ts: *new* - {} FsWatches *deleted*:: /user/username/projects/transitivereferences/a/tsconfig.json: @@ -1213,31 +1213,31 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: - {} -/user/username/projects/transitivereferences/b/tsconfig.json: - {} -/user/username/projects/transitivereferences/c/index.ts: +/a/lib/lib.d.ts: {} /user/username/projects/transitivereferences: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/transitivereferences/refs/a.d.ts: +/user/username/projects/transitivereferences/a/index.d.ts: *new* {} /user/username/projects/transitivereferences/a/tsconfig.json: *new* {} /user/username/projects/transitivereferences/b/index.d.ts: *new* {} -/user/username/projects/transitivereferences/a/index.d.ts: *new* +/user/username/projects/transitivereferences/b/tsconfig.json: + {} +/user/username/projects/transitivereferences/c/index.ts: + {} +/user/username/projects/transitivereferences/c/tsconfig.json: + {} +/user/username/projects/transitivereferences/refs/a.d.ts: {} FsWatches *deleted*:: @@ -1245,14 +1245,14 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: +/user/username/projects/transitivereferences/a: *new* + {} /user/username/projects/transitivereferences/b: {} /user/username/projects/transitivereferences/c: {} /user/username/projects/transitivereferences/refs: {} -/user/username/projects/transitivereferences/a: *new* - {} exitCode:: ExitStatus.undefined @@ -1333,31 +1333,31 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.ts PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: - {} -/user/username/projects/transitivereferences/b/tsconfig.json: - {} -/user/username/projects/transitivereferences/c/index.ts: +/a/lib/lib.d.ts: {} /user/username/projects/transitivereferences: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/transitivereferences/refs/a.d.ts: +/user/username/projects/transitivereferences/a/index.ts: *new* {} /user/username/projects/transitivereferences/a/tsconfig.json: {} /user/username/projects/transitivereferences/b/index.d.ts: {} -/user/username/projects/transitivereferences/a/index.ts: *new* +/user/username/projects/transitivereferences/b/tsconfig.json: + {} +/user/username/projects/transitivereferences/c/index.ts: + {} +/user/username/projects/transitivereferences/c/tsconfig.json: + {} +/user/username/projects/transitivereferences/refs/a.d.ts: {} FsWatches *deleted*:: @@ -1365,14 +1365,14 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: +/user/username/projects/transitivereferences/a: + {} /user/username/projects/transitivereferences/b: {} /user/username/projects/transitivereferences/c: {} /user/username/projects/transitivereferences/refs: {} -/user/username/projects/transitivereferences/a: - {} exitCode:: ExitStatus.undefined @@ -1453,31 +1453,31 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: - {} -/user/username/projects/transitivereferences/b/tsconfig.json: - {} -/user/username/projects/transitivereferences/c/index.ts: +/a/lib/lib.d.ts: {} /user/username/projects/transitivereferences: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/transitivereferences/refs/a.d.ts: +/user/username/projects/transitivereferences/a/index.d.ts: *new* {} /user/username/projects/transitivereferences/a/tsconfig.json: {} /user/username/projects/transitivereferences/b/index.d.ts: {} -/user/username/projects/transitivereferences/a/index.d.ts: *new* +/user/username/projects/transitivereferences/b/tsconfig.json: + {} +/user/username/projects/transitivereferences/c/index.ts: + {} +/user/username/projects/transitivereferences/c/tsconfig.json: + {} +/user/username/projects/transitivereferences/refs/a.d.ts: {} FsWatches *deleted*:: @@ -1485,14 +1485,14 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: +/user/username/projects/transitivereferences/a: + {} /user/username/projects/transitivereferences/b: {} /user/username/projects/transitivereferences/c: {} /user/username/projects/transitivereferences/refs: {} -/user/username/projects/transitivereferences/a: - {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-in-different-folders.js b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-in-different-folders.js index 9c73b44012ad9..a84e55488d443 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-in-different-folders.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-in-different-folders.js @@ -289,40 +289,40 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/transitivereferences/c/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/transitivereferences/b/tsconfig.json: *new* +/user/username/projects/transitivereferences: *new* + {} +/user/username/projects/transitivereferences/a/index.d.ts: *new* {} /user/username/projects/transitivereferences/a/tsconfig.json: *new* {} -/user/username/projects/transitivereferences/c/index.ts: *new* +/user/username/projects/transitivereferences/b/index.d.ts: *new* {} -/user/username/projects/transitivereferences: *new* +/user/username/projects/transitivereferences/b/tsconfig.json: *new* {} -/user/username/projects/transitivereferences/b/index.d.ts: *new* +/user/username/projects/transitivereferences/c/index.ts: *new* {} -/user/username/projects/transitivereferences/a/index.d.ts: *new* +/user/username/projects/transitivereferences/c/tsconfig.json: *new* {} /user/username/projects/transitivereferences/refs/a.d.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} FsWatchesRecursive:: +/user/username/projects/transitivereferences/a: *new* + {} /user/username/projects/transitivereferences/b: *new* {} /user/username/projects/transitivereferences/refs: *new* {} -/user/username/projects/transitivereferences/a: *new* - {} exitCode:: ExitStatus.undefined @@ -586,29 +586,29 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: - {} -/user/username/projects/transitivereferences/b/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/transitivereferences/a/tsconfig.json: +/user/username/projects/transitivereferences: {} -/user/username/projects/transitivereferences/c/index.ts: +/user/username/projects/transitivereferences/a/index.d.ts: {} -/user/username/projects/transitivereferences: +/user/username/projects/transitivereferences/a/tsconfig.json: {} /user/username/projects/transitivereferences/b/index.d.ts: {} -/user/username/projects/transitivereferences/a/index.d.ts: +/user/username/projects/transitivereferences/b/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/transitivereferences/c/index.ts: + {} +/user/username/projects/transitivereferences/c/tsconfig.json: {} /user/username/projects/transitivereferences/nrefs/a.d.ts: *new* {} @@ -618,10 +618,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/transitivereferences/b: - {} /user/username/projects/transitivereferences/a: {} +/user/username/projects/transitivereferences/b: + {} /user/username/projects/transitivereferences/nrefs: *new* {} @@ -726,29 +726,29 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: - {} -/user/username/projects/transitivereferences/b/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/transitivereferences/a/tsconfig.json: +/user/username/projects/transitivereferences: {} -/user/username/projects/transitivereferences/c/index.ts: +/user/username/projects/transitivereferences/a/index.d.ts: {} -/user/username/projects/transitivereferences: +/user/username/projects/transitivereferences/a/tsconfig.json: {} /user/username/projects/transitivereferences/b/index.d.ts: {} -/user/username/projects/transitivereferences/a/index.d.ts: +/user/username/projects/transitivereferences/b/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/transitivereferences/c/index.ts: + {} +/user/username/projects/transitivereferences/c/tsconfig.json: {} /user/username/projects/transitivereferences/refs/a.d.ts: *new* {} @@ -758,10 +758,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/transitivereferences/b: - {} /user/username/projects/transitivereferences/a: {} +/user/username/projects/transitivereferences/b: + {} /user/username/projects/transitivereferences/refs: *new* {} @@ -847,32 +847,32 @@ Dependencies for:: /user/username/projects/transitiveReferences/nrefs/a.d.ts PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/transitivereferences/b/tsconfig.json: +/user/username/projects/transitivereferences: {} /user/username/projects/transitivereferences/a/tsconfig.json: {} -/user/username/projects/transitivereferences/c/index.ts: - {} -/user/username/projects/transitivereferences: - {} /user/username/projects/transitivereferences/b/index.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/transitivereferences/b/tsconfig.json: {} -/user/username/projects/transitivereferences/refs/a.d.ts: +/user/username/projects/transitivereferences/c/index.ts: + {} +/user/username/projects/transitivereferences/c/tsconfig.json: {} /user/username/projects/transitivereferences/nrefs/a.d.ts: *new* {} +/user/username/projects/transitivereferences/refs/a.d.ts: + {} FsWatches *deleted*:: /user/username/projects/transitivereferences/a/index.d.ts: @@ -881,10 +881,10 @@ FsWatches *deleted*:: FsWatchesRecursive:: /user/username/projects/transitivereferences/b: {} -/user/username/projects/transitivereferences/refs: - {} /user/username/projects/transitivereferences/nrefs: *new* {} +/user/username/projects/transitivereferences/refs: + {} FsWatchesRecursive *deleted*:: /user/username/projects/transitivereferences/a: @@ -959,27 +959,27 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/transitivereferences/b/tsconfig.json: +/user/username/projects/transitivereferences: {} /user/username/projects/transitivereferences/a/tsconfig.json: {} -/user/username/projects/transitivereferences/c/index.ts: +/user/username/projects/transitivereferences/b/index.d.ts: {} -/user/username/projects/transitivereferences: +/user/username/projects/transitivereferences/b/tsconfig.json: {} -/user/username/projects/transitivereferences/b/index.d.ts: +/user/username/projects/transitivereferences/c/index.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/transitivereferences/c/tsconfig.json: {} /user/username/projects/transitivereferences/refs/a.d.ts: {} @@ -1079,28 +1079,28 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.ts PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/transitivereferences: + {} +/user/username/projects/transitivereferences/b/index.ts: *new* {} /user/username/projects/transitivereferences/b/tsconfig.json: {} /user/username/projects/transitivereferences/c/index.ts: {} -/user/username/projects/transitivereferences: - {} -/a/lib/lib.d.ts: +/user/username/projects/transitivereferences/c/tsconfig.json: {} /user/username/projects/transitivereferences/refs/a.d.ts: {} -/user/username/projects/transitivereferences/b/index.ts: *new* - {} FsWatches *deleted*:: /user/username/projects/transitivereferences/a/tsconfig.json: @@ -1197,31 +1197,31 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: - {} -/user/username/projects/transitivereferences/b/tsconfig.json: - {} -/user/username/projects/transitivereferences/c/index.ts: +/a/lib/lib.d.ts: {} /user/username/projects/transitivereferences: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/transitivereferences/refs/a.d.ts: +/user/username/projects/transitivereferences/a/index.d.ts: *new* {} /user/username/projects/transitivereferences/a/tsconfig.json: *new* {} /user/username/projects/transitivereferences/b/index.d.ts: *new* {} -/user/username/projects/transitivereferences/a/index.d.ts: *new* +/user/username/projects/transitivereferences/b/tsconfig.json: + {} +/user/username/projects/transitivereferences/c/index.ts: + {} +/user/username/projects/transitivereferences/c/tsconfig.json: + {} +/user/username/projects/transitivereferences/refs/a.d.ts: {} FsWatches *deleted*:: @@ -1229,12 +1229,12 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: +/user/username/projects/transitivereferences/a: *new* + {} /user/username/projects/transitivereferences/b: {} /user/username/projects/transitivereferences/refs: {} -/user/username/projects/transitivereferences/a: *new* - {} exitCode:: ExitStatus.undefined @@ -1315,31 +1315,31 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.ts PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: - {} -/user/username/projects/transitivereferences/b/tsconfig.json: - {} -/user/username/projects/transitivereferences/c/index.ts: +/a/lib/lib.d.ts: {} /user/username/projects/transitivereferences: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/transitivereferences/refs/a.d.ts: +/user/username/projects/transitivereferences/a/index.ts: *new* {} /user/username/projects/transitivereferences/a/tsconfig.json: {} /user/username/projects/transitivereferences/b/index.d.ts: {} -/user/username/projects/transitivereferences/a/index.ts: *new* +/user/username/projects/transitivereferences/b/tsconfig.json: + {} +/user/username/projects/transitivereferences/c/index.ts: + {} +/user/username/projects/transitivereferences/c/tsconfig.json: + {} +/user/username/projects/transitivereferences/refs/a.d.ts: {} FsWatches *deleted*:: @@ -1347,12 +1347,12 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: +/user/username/projects/transitivereferences/a: + {} /user/username/projects/transitivereferences/b: {} /user/username/projects/transitivereferences/refs: {} -/user/username/projects/transitivereferences/a: - {} exitCode:: ExitStatus.undefined @@ -1433,31 +1433,31 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: - {} -/user/username/projects/transitivereferences/b/tsconfig.json: - {} -/user/username/projects/transitivereferences/c/index.ts: +/a/lib/lib.d.ts: {} /user/username/projects/transitivereferences: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/transitivereferences/refs/a.d.ts: +/user/username/projects/transitivereferences/a/index.d.ts: *new* {} /user/username/projects/transitivereferences/a/tsconfig.json: {} /user/username/projects/transitivereferences/b/index.d.ts: {} -/user/username/projects/transitivereferences/a/index.d.ts: *new* +/user/username/projects/transitivereferences/b/tsconfig.json: + {} +/user/username/projects/transitivereferences/c/index.ts: + {} +/user/username/projects/transitivereferences/c/tsconfig.json: + {} +/user/username/projects/transitivereferences/refs/a.d.ts: {} FsWatches *deleted*:: @@ -1465,12 +1465,12 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: +/user/username/projects/transitivereferences/a: + {} /user/username/projects/transitivereferences/b: {} /user/username/projects/transitivereferences/refs: {} -/user/username/projects/transitivereferences/a: - {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js index 1ed2af2ca4c38..c9610a43c6b5e 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js @@ -309,27 +309,27 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.d.ts PolledWatches:: -/user/username/projects/transitivereferences/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/tsconfig.c.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/transitivereferences/tsconfig.b.json: *new* +/user/username/projects/transitivereferences/a.d.ts: *new* {} -/user/username/projects/transitivereferences/tsconfig.a.json: *new* +/user/username/projects/transitivereferences/b.d.ts: *new* {} /user/username/projects/transitivereferences/c.ts: *new* {} -/user/username/projects/transitivereferences/b.d.ts: *new* +/user/username/projects/transitivereferences/refs/a.d.ts: *new* {} -/user/username/projects/transitivereferences/a.d.ts: *new* +/user/username/projects/transitivereferences/tsconfig.a.json: *new* {} -/user/username/projects/transitivereferences/refs/a.d.ts: *new* +/user/username/projects/transitivereferences/tsconfig.b.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/transitivereferences/tsconfig.c.json: *new* {} FsWatchesRecursive:: @@ -594,27 +594,27 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.d.ts PolledWatches:: -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/tsconfig.c.json: +/a/lib/lib.d.ts: {} -/user/username/projects/transitivereferences/tsconfig.b.json: +/user/username/projects/transitivereferences/a.d.ts: {} -/user/username/projects/transitivereferences/tsconfig.a.json: +/user/username/projects/transitivereferences/b.d.ts: {} /user/username/projects/transitivereferences/c.ts: {} -/user/username/projects/transitivereferences/b.d.ts: +/user/username/projects/transitivereferences/nrefs/a.d.ts: *new* {} -/user/username/projects/transitivereferences/a.d.ts: +/user/username/projects/transitivereferences/tsconfig.a.json: {} -/a/lib/lib.d.ts: +/user/username/projects/transitivereferences/tsconfig.b.json: {} -/user/username/projects/transitivereferences/nrefs/a.d.ts: *new* +/user/username/projects/transitivereferences/tsconfig.c.json: {} FsWatches *deleted*:: @@ -722,27 +722,27 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.d.ts PolledWatches:: -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/tsconfig.c.json: +/a/lib/lib.d.ts: {} -/user/username/projects/transitivereferences/tsconfig.b.json: +/user/username/projects/transitivereferences/a.d.ts: {} -/user/username/projects/transitivereferences/tsconfig.a.json: +/user/username/projects/transitivereferences/b.d.ts: {} /user/username/projects/transitivereferences/c.ts: {} -/user/username/projects/transitivereferences/b.d.ts: +/user/username/projects/transitivereferences/refs/a.d.ts: *new* {} -/user/username/projects/transitivereferences/a.d.ts: +/user/username/projects/transitivereferences/tsconfig.a.json: {} -/a/lib/lib.d.ts: +/user/username/projects/transitivereferences/tsconfig.b.json: {} -/user/username/projects/transitivereferences/refs/a.d.ts: *new* +/user/username/projects/transitivereferences/tsconfig.c.json: {} FsWatches *deleted*:: @@ -835,27 +835,27 @@ Dependencies for:: /user/username/projects/transitiveReferences/nrefs/a.d.ts PolledWatches:: -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/tsconfig.c.json: - {} -/user/username/projects/transitivereferences/tsconfig.b.json: +/a/lib/lib.d.ts: {} -/user/username/projects/transitivereferences/tsconfig.a.json: +/user/username/projects/transitivereferences/b.d.ts: {} /user/username/projects/transitivereferences/c.ts: {} -/user/username/projects/transitivereferences/b.d.ts: - {} -/a/lib/lib.d.ts: +/user/username/projects/transitivereferences/nrefs/a.d.ts: *new* {} /user/username/projects/transitivereferences/refs/a.d.ts: {} -/user/username/projects/transitivereferences/nrefs/a.d.ts: *new* +/user/username/projects/transitivereferences/tsconfig.a.json: + {} +/user/username/projects/transitivereferences/tsconfig.b.json: + {} +/user/username/projects/transitivereferences/tsconfig.c.json: {} FsWatches *deleted*:: @@ -863,10 +863,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/transitivereferences/refs: - {} /user/username/projects/transitivereferences/nrefs: *new* {} +/user/username/projects/transitivereferences/refs: + {} exitCode:: ExitStatus.undefined @@ -937,25 +937,25 @@ Dependencies for:: /user/username/projects/transitiveReferences/b.d.ts PolledWatches:: -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/tsconfig.c.json: - {} -/user/username/projects/transitivereferences/tsconfig.b.json: +/a/lib/lib.d.ts: {} -/user/username/projects/transitivereferences/tsconfig.a.json: +/user/username/projects/transitivereferences/b.d.ts: {} /user/username/projects/transitivereferences/c.ts: {} -/user/username/projects/transitivereferences/b.d.ts: +/user/username/projects/transitivereferences/refs/a.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/transitivereferences/tsconfig.a.json: {} -/user/username/projects/transitivereferences/refs/a.d.ts: +/user/username/projects/transitivereferences/tsconfig.b.json: + {} +/user/username/projects/transitivereferences/tsconfig.c.json: {} FsWatches *deleted*:: @@ -1050,30 +1050,30 @@ Dependencies for:: /user/username/projects/transitiveReferences/b.ts PolledWatches:: -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/tsconfig.c.json: +/a/lib/lib.d.ts: {} -/user/username/projects/transitivereferences/tsconfig.b.json: +/user/username/projects/transitivereferences/b.ts: *new* {} /user/username/projects/transitivereferences/c.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/transitivereferences/refs/a.d.ts: {} -/user/username/projects/transitivereferences/b.ts: *new* +/user/username/projects/transitivereferences/tsconfig.b.json: + {} +/user/username/projects/transitivereferences/tsconfig.c.json: {} FsWatches *deleted*:: -/user/username/projects/transitivereferences/tsconfig.a.json: - {} /user/username/projects/transitivereferences/b.d.ts: {} +/user/username/projects/transitivereferences/tsconfig.a.json: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: @@ -1172,27 +1172,27 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.d.ts PolledWatches:: -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/tsconfig.c.json: +/a/lib/lib.d.ts: {} -/user/username/projects/transitivereferences/tsconfig.b.json: +/user/username/projects/transitivereferences/a.d.ts: *new* {} -/user/username/projects/transitivereferences/c.ts: +/user/username/projects/transitivereferences/b.d.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/transitivereferences/c.ts: {} /user/username/projects/transitivereferences/refs/a.d.ts: {} /user/username/projects/transitivereferences/tsconfig.a.json: *new* {} -/user/username/projects/transitivereferences/b.d.ts: *new* +/user/username/projects/transitivereferences/tsconfig.b.json: {} -/user/username/projects/transitivereferences/a.d.ts: *new* +/user/username/projects/transitivereferences/tsconfig.c.json: {} FsWatches *deleted*:: @@ -1281,27 +1281,27 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.ts PolledWatches:: -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/tsconfig.c.json: +/a/lib/lib.d.ts: {} -/user/username/projects/transitivereferences/tsconfig.b.json: +/user/username/projects/transitivereferences/a.ts: *new* {} -/user/username/projects/transitivereferences/c.ts: +/user/username/projects/transitivereferences/b.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/transitivereferences/c.ts: {} /user/username/projects/transitivereferences/refs/a.d.ts: {} /user/username/projects/transitivereferences/tsconfig.a.json: {} -/user/username/projects/transitivereferences/b.d.ts: +/user/username/projects/transitivereferences/tsconfig.b.json: {} -/user/username/projects/transitivereferences/a.ts: *new* +/user/username/projects/transitivereferences/tsconfig.c.json: {} FsWatches *deleted*:: @@ -1391,27 +1391,27 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.d.ts PolledWatches:: -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/tsconfig.c.json: +/a/lib/lib.d.ts: {} -/user/username/projects/transitivereferences/tsconfig.b.json: +/user/username/projects/transitivereferences/a.d.ts: *new* {} -/user/username/projects/transitivereferences/c.ts: +/user/username/projects/transitivereferences/b.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/transitivereferences/c.ts: {} /user/username/projects/transitivereferences/refs/a.d.ts: {} /user/username/projects/transitivereferences/tsconfig.a.json: {} -/user/username/projects/transitivereferences/b.d.ts: +/user/username/projects/transitivereferences/tsconfig.b.json: {} -/user/username/projects/transitivereferences/a.d.ts: *new* +/user/username/projects/transitivereferences/tsconfig.c.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tscWatch/projectsWithReferences/when-declarationMap-changes-for-dependency.js b/tests/baselines/reference/tscWatch/projectsWithReferences/when-declarationMap-changes-for-dependency.js index bb757bd797579..164d7b2af9a09 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/when-declarationMap-changes-for-dependency.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/when-declarationMap-changes-for-dependency.js @@ -243,25 +243,25 @@ Dependencies for:: /user/username/projects/sample1/core/index.d.ts PolledWatches:: +/user/username/projects/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/sample1/logic/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/sample1/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/sample1/logic/tsconfig.json: *new* - {} -/user/username/projects/sample1/core/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/sample1/logic/index.ts: *new* +/user/username/projects/sample1/core/anothermodule.d.ts: *new* {} /user/username/projects/sample1/core/index.d.ts: *new* {} -/user/username/projects/sample1/core/anothermodule.d.ts: *new* +/user/username/projects/sample1/core/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/sample1/logic/index.ts: *new* + {} +/user/username/projects/sample1/logic/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/projectsWithReferences/when-referenced-project-uses-different-module-resolution.js b/tests/baselines/reference/tscWatch/projectsWithReferences/when-referenced-project-uses-different-module-resolution.js index 77e42d1b392a3..432c5c57494a5 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/when-referenced-project-uses-different-module-resolution.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/when-referenced-project-uses-different-module-resolution.js @@ -296,27 +296,27 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.d.ts PolledWatches:: -/user/username/projects/transitivereferences/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/tsconfig.c.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/transitivereferences/tsconfig.b.json: *new* +/user/username/projects/transitivereferences/a.d.ts: *new* {} -/user/username/projects/transitivereferences/tsconfig.a.json: *new* +/user/username/projects/transitivereferences/b.d.ts: *new* {} /user/username/projects/transitivereferences/c.ts: *new* {} -/user/username/projects/transitivereferences/b.d.ts: *new* +/user/username/projects/transitivereferences/refs/a.d.ts: *new* {} -/user/username/projects/transitivereferences/a.d.ts: *new* +/user/username/projects/transitivereferences/tsconfig.a.json: *new* {} -/user/username/projects/transitivereferences/refs/a.d.ts: *new* +/user/username/projects/transitivereferences/tsconfig.b.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/transitivereferences/tsconfig.c.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js b/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js index 366457ad7fe2e..ef709aace2928 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js @@ -58,12 +58,12 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/d/f0.ts (used version) FsWatches:: +/a/lib/lib.d.ts: *new* + {} /users/username/projects/project/d/f0.ts: *new* {} /users/username/projects/project/f1.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} FsWatchesRecursive:: /users/username/projects: *new* @@ -179,10 +179,10 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/d/f0.ts (computed .d.ts) FsWatches:: -/users/username/projects/project/d/f0.ts: - {} /a/lib/lib.d.ts: {} +/users/username/projects/project/d/f0.ts: + {} FsWatches *deleted*:: /users/username/projects/project/f1.ts: @@ -248,10 +248,10 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/d/f0.ts (computed .d.ts) FsWatches:: -/users/username/projects/project/d/f0.ts: - {} /a/lib/lib.d.ts: {} +/users/username/projects/project/d/f0.ts: + {} /users/username/projects/project/f1.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/resolutionCache/ignores-changes-in-node_modules-that-start-with-dot/watch-with-configFile.js b/tests/baselines/reference/tscWatch/resolutionCache/ignores-changes-in-node_modules-that-start-with-dot/watch-with-configFile.js index 4b62fcbf421e9..17a14a33c9388 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/ignores-changes-in-node_modules-that-start-with-dot/watch-with-configFile.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/ignores-changes-in-node_modules-that-start-with-dot/watch-with-configFile.js @@ -57,20 +57,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/test.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/node_modules/somemodule/index.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/test.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/node_modules: *new* - {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/node_modules: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/resolutionCache/ignores-changes-in-node_modules-that-start-with-dot/watch-without-configFile.js b/tests/baselines/reference/tscWatch/resolutionCache/ignores-changes-in-node_modules-that-start-with-dot/watch-without-configFile.js index c2ee26f72fc2f..f4dd8a9afd985 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/ignores-changes-in-node_modules-that-start-with-dot/watch-without-configFile.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/ignores-changes-in-node_modules-that-start-with-dot/watch-without-configFile.js @@ -51,11 +51,11 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/test.ts (used version) FsWatches:: -/user/username/projects/myproject/test.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/node_modules/somemodule/index.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/test.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/resolutionCache/loads-missing-files-from-disk.js b/tests/baselines/reference/tscWatch/resolutionCache/loads-missing-files-from-disk.js index e9b1524c869bd..8ecad23c1ff6e 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/loads-missing-files-from-disk.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/loads-missing-files-from-disk.js @@ -47,10 +47,10 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/foo.ts (used version) FsWatches:: -/users/username/projects/project/foo.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/foo.ts: *new* + {} FsWatchesRecursive:: /users/username/projects: *new* @@ -105,12 +105,12 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/foo.ts (computed .d.ts) FsWatches:: -/users/username/projects/project/foo.ts: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/bar.d.ts: *new* {} +/users/username/projects/project/foo.ts: + {} FsWatchesRecursive:: /users/username/projects: diff --git a/tests/baselines/reference/tscWatch/resolutionCache/reusing-type-ref-resolution.js b/tests/baselines/reference/tscWatch/resolutionCache/reusing-type-ref-resolution.js index 9ca4265fac464..38790e209d0a3 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/reusing-type-ref-resolution.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/reusing-type-ref-resolution.js @@ -175,30 +175,30 @@ Shape signatures in builder refreshed for:: PolledWatches:: /users/username/projects/node_modules: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/filewithimports.ts: *new* {} -/users/username/projects/project/node_modules/pkg0/index.d.ts: *new* - {} /users/username/projects/project/filewithtyperefs.ts: *new* {} +/users/username/projects/project/node_modules/pkg0/index.d.ts: *new* + {} /users/username/projects/project/node_modules/pkg2/index.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: -/users/username/projects/project/node_modules: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/node_modules: *new* + {} exitCode:: ExitStatus.undefined @@ -444,32 +444,32 @@ Shape signatures in builder refreshed for:: PolledWatches:: /users/username/projects/node_modules: {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/project/filewithimports.ts: {} +/users/username/projects/project/filewithtyperefs.ts: + {} /users/username/projects/project/node_modules/pkg0/index.d.ts: {} -/users/username/projects/project/filewithtyperefs.ts: +/users/username/projects/project/node_modules/pkg1/index.d.ts: *new* {} /users/username/projects/project/node_modules/pkg2/index.d.ts: {} -/a/lib/lib.d.ts: - {} -/users/username/projects/project/node_modules/pkg1/index.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatchesRecursive:: -/users/username/projects/project/node_modules: - {} /users/username/projects/project: {} +/users/username/projects/project/node_modules: + {} exitCode:: ExitStatus.undefined @@ -691,34 +691,34 @@ Shape signatures in builder refreshed for:: PolledWatches:: /users/username/projects/node_modules: {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/project/filewithimports.ts: {} -/users/username/projects/project/node_modules/pkg0/index.d.ts: - {} /users/username/projects/project/filewithtyperefs.ts: {} -/users/username/projects/project/node_modules/pkg2/index.d.ts: - {} -/a/lib/lib.d.ts: +/users/username/projects/project/node_modules/pkg0/index.d.ts: {} /users/username/projects/project/node_modules/pkg1/index.d.ts: {} +/users/username/projects/project/node_modules/pkg2/index.d.ts: + {} /users/username/projects/project/node_modules/pkg3/index.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: -/users/username/projects/project/node_modules: - {} /users/username/projects/project: {} +/users/username/projects/project/node_modules: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/resolutionCache/scoped-package-installation.js b/tests/baselines/reference/tscWatch/resolutionCache/scoped-package-installation.js index ae74005002160..70dc26de2aafc 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/scoped-package-installation.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/scoped-package-installation.js @@ -100,26 +100,26 @@ Shape signatures in builder refreshed for:: PolledWatches:: /user/username/projects/myproject/node_modules: *new* {"pollingInterval":500} -/user/username/projects/node_modules: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/lib/app.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/lib: *new* - {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/lib: *new* + {} exitCode:: ExitStatus.undefined @@ -139,10 +139,10 @@ export const unrelated = 10; PolledWatches:: -/user/username/projects/node_modules: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules: + {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} @@ -151,18 +151,18 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/lib/app.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/lib: - {} /user/username/projects/myproject: {} +/user/username/projects/myproject/lib: + {} /user/username/projects/myproject/node_modules: *new* {} @@ -459,20 +459,20 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/lib/app.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/node_modules/@myapp/ts-types/index.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/lib: - {} /user/username/projects/myproject: {} +/user/username/projects/myproject/lib: + {} /user/username/projects/myproject/node_modules: {} diff --git a/tests/baselines/reference/tscWatch/resolutionCache/should-compile-correctly-when-resolved-module-goes-missing-and-then-comes-back.js b/tests/baselines/reference/tscWatch/resolutionCache/should-compile-correctly-when-resolved-module-goes-missing-and-then-comes-back.js index a029b4f166acf..21bb82a2ff319 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/should-compile-correctly-when-resolved-module-goes-missing-and-then-comes-back.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/should-compile-correctly-when-resolved-module-goes-missing-and-then-comes-back.js @@ -48,11 +48,11 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/foo.ts (used version) FsWatches:: -/users/username/projects/project/foo.ts: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/bar.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/foo.ts: *new* {} FsWatchesRecursive:: @@ -105,10 +105,10 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/foo.ts (computed .d.ts) FsWatches:: -/users/username/projects/project/foo.ts: - {} /a/lib/lib.d.ts: {} +/users/username/projects/project/foo.ts: + {} FsWatches *deleted*:: /users/username/projects/project/bar.d.ts: @@ -161,12 +161,12 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/foo.ts (computed .d.ts) FsWatches:: -/users/username/projects/project/foo.ts: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/bar.d.ts: *new* {} +/users/username/projects/project/foo.ts: + {} FsWatchesRecursive:: /users/username/projects: diff --git a/tests/baselines/reference/tscWatch/resolutionCache/when-types-in-compiler-option-are-global-and-installed-at-later-point.js b/tests/baselines/reference/tscWatch/resolutionCache/when-types-in-compiler-option-are-global-and-installed-at-later-point.js index d1e157d80f860..13bc449dda755 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/when-types-in-compiler-option-are-global-and-installed-at-later-point.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/when-types-in-compiler-option-are-global-and-installed-at-later-point.js @@ -58,11 +58,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/lib/app.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -98,11 +98,11 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/lib/app.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: @@ -151,16 +151,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/lib/app.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/node_modules/@myapp/ts-types/package.json: *new* {} /user/username/projects/myproject/node_modules/@myapp/ts-types/types/somefile.define.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: diff --git a/tests/baselines/reference/tscWatch/resolutionCache/with-modules-linked-to-sibling-folder.js b/tests/baselines/reference/tscWatch/resolutionCache/with-modules-linked-to-sibling-folder.js index 61f390210b2c0..620e7fcba37d9 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/with-modules-linked-to-sibling-folder.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/with-modules-linked-to-sibling-folder.js @@ -71,18 +71,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/main/index.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/linked-package/dist/index.d.ts: *new* {} /user/username/projects/myproject/linked-package/dist/other.d.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} /user/username/projects/myproject/linked-package/package.json: *new* {} +/user/username/projects/myproject/main/index.ts: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/linked-package: *new* diff --git a/tests/baselines/reference/tscWatch/resolutionCache/works-when-included-file-with-ambient-module-changes.js b/tests/baselines/reference/tscWatch/resolutionCache/works-when-included-file-with-ambient-module-changes.js index 67190da5519b8..54b7a129934f0 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/works-when-included-file-with-ambient-module-changes.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/works-when-included-file-with-ambient-module-changes.js @@ -62,21 +62,21 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/bar.d.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules: *new* - {"pollingInterval":500} /users/username/projects/node_modules: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/foo.ts: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/bar.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/foo.ts: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/resolutionCache/works-when-installing-something-in-node_modules-or-@types-when-there-is-no-notification-from-fs-for-index-file.js b/tests/baselines/reference/tscWatch/resolutionCache/works-when-installing-something-in-node_modules-or-@types-when-there-is-no-notification-from-fs-for-index-file.js index e0a987433f314..d3930c936fd9e 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/works-when-installing-something-in-node_modules-or-@types-when-there-is-no-notification-from-fs-for-index-file.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/works-when-installing-something-in-node_modules-or-@types-when-there-is-no-notification-from-fs-for-index-file.js @@ -98,28 +98,28 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/worker.ts: *new* +/user/username/projects/myproject/node_modules/@types/node/base.d.ts: *new* {} -/user/username/projects/myproject/node_modules/@types/node/index.d.ts: *new* +/user/username/projects/myproject/node_modules/@types/node/globals.d.ts: *new* {} -/user/username/projects/myproject/node_modules/@types/node/base.d.ts: *new* +/user/username/projects/myproject/node_modules/@types/node/index.d.ts: *new* {} /user/username/projects/myproject/node_modules/@types/node/ts3.6/base.d.ts: *new* {} -/user/username/projects/myproject/node_modules/@types/node/globals.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/worker.ts: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject: *new* + {} /user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/node_modules/@types: *new* {} -/user/username/projects/myproject: *new* - {} exitCode:: ExitStatus.undefined @@ -262,30 +262,30 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: + {} /user/username/projects/myproject/tsconfig.json: {} /user/username/projects/myproject/worker.ts: {} -/a/lib/lib.d.ts: - {} FsWatches *deleted*:: -/user/username/projects/myproject/node_modules/@types/node/index.d.ts: - {} /user/username/projects/myproject/node_modules/@types/node/base.d.ts: {} -/user/username/projects/myproject/node_modules/@types/node/ts3.6/base.d.ts: - {} /user/username/projects/myproject/node_modules/@types/node/globals.d.ts: {} +/user/username/projects/myproject/node_modules/@types/node/index.d.ts: + {} +/user/username/projects/myproject/node_modules/@types/node/ts3.6/base.d.ts: + {} FsWatchesRecursive:: +/user/username/projects/myproject: + {} /user/username/projects/myproject/node_modules: {} /user/username/projects/myproject/node_modules/@types: {} -/user/username/projects/myproject: - {} exitCode:: ExitStatus.undefined @@ -369,22 +369,22 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/worker.ts: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/worker.ts: + {} FsWatchesRecursive:: +/user/username/projects/myproject: + {} /user/username/projects/myproject/node_modules: {} /user/username/projects/myproject/node_modules/@types: {} -/user/username/projects/myproject: - {} exitCode:: ExitStatus.undefined @@ -438,28 +438,28 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/node_modules: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/worker.ts: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/worker.ts: + {} FsWatchesRecursive:: +/user/username/projects/myproject: + {} /user/username/projects/myproject/node_modules: {} /user/username/projects/myproject/node_modules/@types: {} -/user/username/projects/myproject: - {} exitCode:: ExitStatus.undefined @@ -568,30 +568,30 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/worker.ts: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts: {} -/user/username/projects/myproject/node_modules/@types/node/index.d.ts: *new* - {} /user/username/projects/myproject/node_modules/@types/node/base.d.ts: *new* {} +/user/username/projects/myproject/node_modules/@types/node/globals.d.ts: *new* + {} +/user/username/projects/myproject/node_modules/@types/node/index.d.ts: *new* + {} /user/username/projects/myproject/node_modules/@types/node/ts3.6/base.d.ts: *new* {} -/user/username/projects/myproject/node_modules/@types/node/globals.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/worker.ts: {} FsWatchesRecursive:: +/user/username/projects/myproject: + {} /user/username/projects/myproject/node_modules: {} /user/username/projects/myproject/node_modules/@types: {} -/user/username/projects/myproject: - {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/resolutionCache/works-when-module-resolution-changes-to-ambient-module.js b/tests/baselines/reference/tscWatch/resolutionCache/works-when-module-resolution-changes-to-ambient-module.js index 3a66ed2bd7836..25b4f698510e2 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/works-when-module-resolution-changes-to-ambient-module.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/works-when-module-resolution-changes-to-ambient-module.js @@ -47,20 +47,20 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/foo.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules: *new* - {"pollingInterval":500} /users/username/projects/node_modules: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/foo.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/foo.ts: *new* + {} exitCode:: ExitStatus.undefined @@ -102,10 +102,10 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/foo.ts: - {} /a/lib/lib.d.ts: {} +/users/username/projects/project/foo.ts: + {} FsWatchesRecursive:: /users/username/projects/project/node_modules: *new* @@ -153,14 +153,14 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/foo.ts: - {} /a/lib/lib.d.ts: {} -/users/username/projects/project/node_modules/@types/node/package.json: *new* +/users/username/projects/project/foo.ts: {} /users/username/projects/project/node_modules/@types/node/index.d.ts: *new* {} +/users/username/projects/project/node_modules/@types/node/package.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project/node_modules/@types: diff --git a/tests/baselines/reference/tscWatch/resolutionCache/works-when-renaming-node_modules-folder-that-already-contains-@types-folder.js b/tests/baselines/reference/tscWatch/resolutionCache/works-when-renaming-node_modules-folder-that-already-contains-@types-folder.js index 439d32325491d..afa65bed75bed 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/works-when-renaming-node_modules-folder-that-already-contains-@types-folder.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/works-when-renaming-node_modules-folder-that-already-contains-@types-folder.js @@ -52,18 +52,18 @@ Shape signatures in builder refreshed for:: PolledWatches:: /user/username/projects/myproject/node_modules: *new* {"pollingInterval":500} -/user/username/projects/node_modules: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/a.ts: *new* + {} exitCode:: ExitStatus.undefined @@ -94,10 +94,10 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a.ts: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/a.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: *new* @@ -145,10 +145,10 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a.ts: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject/node_modules/@types/qqq/index.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/resolutionCache/works-when-reusing-program-with-files-from-external-library.js b/tests/baselines/reference/tscWatch/resolutionCache/works-when-reusing-program-with-files-from-external-library.js index 0330bb30ab7f0..9165d5deb190e 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/works-when-reusing-program-with-files-from-external-library.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/works-when-reusing-program-with-files-from-external-library.js @@ -59,26 +59,26 @@ Shape signatures in builder refreshed for:: /a/b/projects/myproject/src/file2.ts (used version) PolledWatches:: -/a/b/projects/myproject/src/node_modules: *new* +/a/b/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/a/b/projects/node_modules: *new* +/a/b/projects/myproject/src/node_modules: *new* {"pollingInterval":500} /a/b/projects/myproject/src/node_modules/@types: *new* {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: *new* +/a/b/projects/node_modules: *new* {"pollingInterval":500} /a/b/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/projects/myproject/src/tsconfig.json: *new* +/a/b/projects/myproject/node_modules/module1/index.js: *new* {} /a/b/projects/myproject/src/file1.ts: *new* {} -/a/b/projects/myproject/node_modules/module1/index.js: *new* - {} /a/b/projects/myproject/src/file2.ts: *new* {} +/a/b/projects/myproject/src/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/resolveJsonModule/incremental-always-prefers-declaration-file-over-document.js b/tests/baselines/reference/tscWatch/resolveJsonModule/incremental-always-prefers-declaration-file-over-document.js index 28e6f323cff24..c54659321b442 100644 --- a/tests/baselines/reference/tscWatch/resolveJsonModule/incremental-always-prefers-declaration-file-over-document.js +++ b/tests/baselines/reference/tscWatch/resolveJsonModule/incremental-always-prefers-declaration-file-over-document.js @@ -63,13 +63,13 @@ Shape signatures in builder refreshed for:: /src/project/main.ts (used version) FsWatches:: -/src/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /src/project/data.d.json.ts: *new* {} /src/project/main.ts: *new* {} -/a/lib/lib.d.ts: *new* +/src/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-when-solution-is-already-built.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-when-solution-is-already-built.js index 79211c1d497c7..61e63c20fc7aa 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-when-solution-is-already-built.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-when-solution-is-already-built.js @@ -244,41 +244,41 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* - {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/packages/a/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* + {} +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: *new* +/user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: *new* +/user/username/projects/myproject/packages/b/src: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-preserveSymlinks-when-solution-is-already-built.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-preserveSymlinks-when-solution-is-already-built.js index 953bea0bdc1ce..dd8965f9ff94b 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-preserveSymlinks-when-solution-is-already-built.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-preserveSymlinks-when-solution-is-already-built.js @@ -244,41 +244,41 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* - {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/packages/a/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* + {} +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: *new* +/user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: *new* +/user/username/projects/myproject/packages/b/src: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-preserveSymlinks.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-preserveSymlinks.js index 80090a81114eb..79718fa905619 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-preserveSymlinks.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-preserveSymlinks.js @@ -68,41 +68,41 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/index.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* - {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/packages/a/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* + {} +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: *new* +/user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: *new* +/user/username/projects/myproject/packages/b/src: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package-when-solution-is-already-built.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package-when-solution-is-already-built.js index b3473921e015b..d6a461549c544 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package-when-solution-is-already-built.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package-when-solution-is-already-built.js @@ -244,41 +244,41 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* - {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/packages/a/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* + {} +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: *new* +/user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: *new* +/user/username/projects/myproject/packages/b/src: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package-with-preserveSymlinks-when-solution-is-already-built.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package-with-preserveSymlinks-when-solution-is-already-built.js index f249324e0a969..cb7291e925ded 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package-with-preserveSymlinks-when-solution-is-already-built.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package-with-preserveSymlinks-when-solution-is-already-built.js @@ -244,41 +244,41 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* - {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/packages/a/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* + {} +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: *new* +/user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: *new* +/user/username/projects/myproject/packages/b/src: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package-with-preserveSymlinks.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package-with-preserveSymlinks.js index 70293148a10ea..b22583ec4f587 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package-with-preserveSymlinks.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package-with-preserveSymlinks.js @@ -68,41 +68,41 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/index.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* - {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/packages/a/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* + {} +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: *new* +/user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: *new* +/user/username/projects/myproject/packages/b/src: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package.js index 909b008847164..afab75d9eb57e 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package.js @@ -68,41 +68,41 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/index.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* - {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/packages/a/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* + {} +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: *new* +/user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: *new* +/user/username/projects/myproject/packages/b/src: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field.js index d549625d1423a..dc5699083a0d6 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field.js @@ -68,41 +68,41 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/index.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* - {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/packages/a/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* + {} +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: *new* +/user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: *new* +/user/username/projects/myproject/packages/b/src: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-when-solution-is-already-built.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-when-solution-is-already-built.js index 5404a76af0d99..0a57f414b5e35 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-when-solution-is-already-built.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-when-solution-is-already-built.js @@ -244,41 +244,41 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar/foo.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* - {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/packages/a/src/test.ts: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* + {} +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: *new* +/user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: *new* +/user/username/projects/myproject/packages/b/src: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-preserveSymlinks-when-solution-is-already-built.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-preserveSymlinks-when-solution-is-already-built.js index 539449521b3f9..6424572caa82d 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-preserveSymlinks-when-solution-is-already-built.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-preserveSymlinks-when-solution-is-already-built.js @@ -244,41 +244,41 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar/foo.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* - {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/packages/a/src/test.ts: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* + {} +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: *new* +/user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: *new* +/user/username/projects/myproject/packages/b/src: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-preserveSymlinks.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-preserveSymlinks.js index 7722c6d49aa4c..00e73b9fbc738 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-preserveSymlinks.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-preserveSymlinks.js @@ -68,41 +68,41 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/test.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* - {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/packages/a/src/test.ts: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* + {} +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: *new* +/user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: *new* +/user/username/projects/myproject/packages/b/src: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package-when-solution-is-already-built.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package-when-solution-is-already-built.js index 559b3a8c61723..56a3e78709992 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package-when-solution-is-already-built.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package-when-solution-is-already-built.js @@ -244,41 +244,41 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar/foo.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* - {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/packages/a/src/test.ts: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* + {} +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: *new* +/user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: *new* +/user/username/projects/myproject/packages/b/src: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package-with-preserveSymlinks-when-solution-is-already-built.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package-with-preserveSymlinks-when-solution-is-already-built.js index 4fc2573bb251a..f54c008b0ef0a 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package-with-preserveSymlinks-when-solution-is-already-built.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package-with-preserveSymlinks-when-solution-is-already-built.js @@ -244,41 +244,41 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar/foo.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* - {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/packages/a/src/test.ts: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* + {} +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: *new* +/user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: *new* +/user/username/projects/myproject/packages/b/src: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package-with-preserveSymlinks.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package-with-preserveSymlinks.js index 4e25bf00b3206..66af97f60d78b 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package-with-preserveSymlinks.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package-with-preserveSymlinks.js @@ -68,41 +68,41 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/test.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* - {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/packages/a/src/test.ts: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* + {} +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: *new* +/user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: *new* +/user/username/projects/myproject/packages/b/src: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package.js index bba9e2fbb268d..0d70c9fa2606c 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package.js @@ -68,41 +68,41 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/test.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* - {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/packages/a/src/test.ts: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* + {} +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: *new* +/user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: *new* +/user/username/projects/myproject/packages/b/src: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder.js index a607d356fe664..cc085833a052e 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder.js @@ -68,41 +68,41 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/test.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* - {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/packages/a/src/test.ts: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* + {} +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: *new* +/user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: *new* +/user/username/projects/myproject/packages/b/src: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project-when-solution-is-already-built.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project-when-solution-is-already-built.js index 03c547841f4ec..93ca86c6d66aa 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project-when-solution-is-already-built.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project-when-solution-is-already-built.js @@ -396,30 +396,30 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/demo/animals/tsconfig.json: *new* - {} -/user/username/projects/demo/core/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/demo/tsconfig-base.json: *new* +/user/username/projects/demo/animals: *new* {} /user/username/projects/demo/animals/animal.ts: *new* {} /user/username/projects/demo/animals/dog.ts: *new* {} -/user/username/projects/demo/animals: *new* - {} /user/username/projects/demo/animals/index.ts: *new* {} +/user/username/projects/demo/animals/tsconfig.json: *new* + {} +/user/username/projects/demo/core/tsconfig.json: *new* + {} /user/username/projects/demo/core/utilities.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/demo/tsconfig-base.json: *new* {} FsWatchesRecursive:: -/user/username/projects/demo/core: *new* - {} /user/username/projects/demo/animals: *new* {} +/user/username/projects/demo/core: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project.js index 6b7430b0c51bf..701dcd407fb09 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project.js @@ -144,30 +144,30 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/demo/animals/tsconfig.json: *new* - {} -/user/username/projects/demo/core/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/demo/tsconfig-base.json: *new* +/user/username/projects/demo/animals: *new* {} /user/username/projects/demo/animals/animal.ts: *new* {} /user/username/projects/demo/animals/dog.ts: *new* {} -/user/username/projects/demo/animals: *new* - {} /user/username/projects/demo/animals/index.ts: *new* {} +/user/username/projects/demo/animals/tsconfig.json: *new* + {} +/user/username/projects/demo/core/tsconfig.json: *new* + {} /user/username/projects/demo/core/utilities.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/demo/tsconfig-base.json: *new* {} FsWatchesRecursive:: -/user/username/projects/demo/core: *new* - {} /user/username/projects/demo/animals: *new* {} +/user/username/projects/demo/core: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchApi/extraFileExtensions-are-supported.js b/tests/baselines/reference/tscWatch/watchApi/extraFileExtensions-are-supported.js index 82ebb7745e5df..018087f7ecb84 100644 --- a/tests/baselines/reference/tscWatch/watchApi/extraFileExtensions-are-supported.js +++ b/tests/baselines/reference/tscWatch/watchApi/extraFileExtensions-are-supported.js @@ -57,13 +57,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} /user/username/projects/myproject/other.vue: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -120,16 +120,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/main.ts: {} /user/username/projects/myproject/other.vue: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/other2.vue: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: diff --git a/tests/baselines/reference/tscWatch/watchApi/host-implements-does-not-implement-hasInvalidatedResolutions.js b/tests/baselines/reference/tscWatch/watchApi/host-implements-does-not-implement-hasInvalidatedResolutions.js index 770efa5384c9d..57305309cc94c 100644 --- a/tests/baselines/reference/tscWatch/watchApi/host-implements-does-not-implement-hasInvalidatedResolutions.js +++ b/tests/baselines/reference/tscWatch/watchApi/host-implements-does-not-implement-hasInvalidatedResolutions.js @@ -77,13 +77,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} /user/username/projects/myproject/other.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined @@ -243,16 +243,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/main.ts: {} /user/username/projects/myproject/other.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/other.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchApi/host-implements-hasInvalidatedResolutions.js b/tests/baselines/reference/tscWatch/watchApi/host-implements-hasInvalidatedResolutions.js index 94b11870c1fa3..48a062fde4be6 100644 --- a/tests/baselines/reference/tscWatch/watchApi/host-implements-hasInvalidatedResolutions.js +++ b/tests/baselines/reference/tscWatch/watchApi/host-implements-hasInvalidatedResolutions.js @@ -77,13 +77,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} /user/username/projects/myproject/other.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined @@ -210,16 +210,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/main.ts: {} /user/username/projects/myproject/other.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/other.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchApi/noEmit-with-composite-with-emit-builder.js b/tests/baselines/reference/tscWatch/watchApi/noEmit-with-composite-with-emit-builder.js index 25c5a7fd65175..0e21ef51be0c3 100644 --- a/tests/baselines/reference/tscWatch/watchApi/noEmit-with-composite-with-emit-builder.js +++ b/tests/baselines/reference/tscWatch/watchApi/noEmit-with-composite-with-emit-builder.js @@ -57,13 +57,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} /user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -176,23 +176,23 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} *new* /user/username/projects/myproject/main.ts: {} *new* /user/username/projects/myproject/other.ts: {} *new* -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} *new* FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/main.ts: {} /user/username/projects/myproject/other.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: @@ -307,13 +307,13 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/main.ts: {} /user/username/projects/myproject/other.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive *deleted*:: @@ -350,13 +350,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} /user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -470,23 +470,23 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} *new* /user/username/projects/myproject/main.ts: {} *new* /user/username/projects/myproject/other.ts: {} *new* -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} *new* FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/main.ts: {} /user/username/projects/myproject/other.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: @@ -588,13 +588,13 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/main.ts: {} /user/username/projects/myproject/other.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive *deleted*:: @@ -631,13 +631,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} /user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/watchApi/noEmit-with-composite-with-semantic-builder.js b/tests/baselines/reference/tscWatch/watchApi/noEmit-with-composite-with-semantic-builder.js index 20df24f001f55..ae3152345d97f 100644 --- a/tests/baselines/reference/tscWatch/watchApi/noEmit-with-composite-with-semantic-builder.js +++ b/tests/baselines/reference/tscWatch/watchApi/noEmit-with-composite-with-semantic-builder.js @@ -57,13 +57,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} /user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -183,23 +183,23 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} *new* /user/username/projects/myproject/main.ts: {} *new* /user/username/projects/myproject/other.ts: {} *new* -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} *new* FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/main.ts: {} /user/username/projects/myproject/other.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: @@ -321,13 +321,13 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/main.ts: {} /user/username/projects/myproject/other.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive *deleted*:: @@ -364,13 +364,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} /user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -491,23 +491,23 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} *new* /user/username/projects/myproject/main.ts: {} *new* /user/username/projects/myproject/other.ts: {} *new* -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} *new* FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/main.ts: {} /user/username/projects/myproject/other.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: @@ -616,13 +616,13 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/main.ts: {} /user/username/projects/myproject/other.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive *deleted*:: @@ -659,13 +659,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} /user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/watchApi/noEmitOnError-with-composite-with-emit-builder.js b/tests/baselines/reference/tscWatch/watchApi/noEmitOnError-with-composite-with-emit-builder.js index f814fa6d4a428..498d7ec1e4ecf 100644 --- a/tests/baselines/reference/tscWatch/watchApi/noEmitOnError-with-composite-with-emit-builder.js +++ b/tests/baselines/reference/tscWatch/watchApi/noEmitOnError-with-composite-with-emit-builder.js @@ -62,13 +62,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} /user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -175,13 +175,13 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/main.ts: {} /user/username/projects/myproject/other.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive *deleted*:: @@ -223,13 +223,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} /user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -339,13 +339,13 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/main.ts: {} /user/username/projects/myproject/other.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive *deleted*:: @@ -382,13 +382,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} /user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/watchApi/noEmitOnError-with-composite-with-semantic-builder.js b/tests/baselines/reference/tscWatch/watchApi/noEmitOnError-with-composite-with-semantic-builder.js index 22e5f2393bd0c..a287270efad82 100644 --- a/tests/baselines/reference/tscWatch/watchApi/noEmitOnError-with-composite-with-semantic-builder.js +++ b/tests/baselines/reference/tscWatch/watchApi/noEmitOnError-with-composite-with-semantic-builder.js @@ -62,13 +62,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} /user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -182,13 +182,13 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/main.ts: {} /user/username/projects/myproject/other.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive *deleted*:: @@ -230,13 +230,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} /user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -353,13 +353,13 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/main.ts: {} /user/username/projects/myproject/other.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive *deleted*:: @@ -396,13 +396,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} /user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/watchApi/semantic-builder-emitOnlyDts.js b/tests/baselines/reference/tscWatch/watchApi/semantic-builder-emitOnlyDts.js index c115ad99848ca..25b6eed967c77 100644 --- a/tests/baselines/reference/tscWatch/watchApi/semantic-builder-emitOnlyDts.js +++ b/tests/baselines/reference/tscWatch/watchApi/semantic-builder-emitOnlyDts.js @@ -62,13 +62,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} /user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -174,13 +174,13 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/main.ts: {} /user/username/projects/myproject/other.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive *deleted*:: @@ -216,13 +216,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} /user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/watchApi/verifies-that-noEmit-is-handled-on-createSemanticDiagnosticsBuilderProgram.js b/tests/baselines/reference/tscWatch/watchApi/verifies-that-noEmit-is-handled-on-createSemanticDiagnosticsBuilderProgram.js index a366f51f7cfe0..27b59563fb602 100644 --- a/tests/baselines/reference/tscWatch/watchApi/verifies-that-noEmit-is-handled-on-createSemanticDiagnosticsBuilderProgram.js +++ b/tests/baselines/reference/tscWatch/watchApi/verifies-that-noEmit-is-handled-on-createSemanticDiagnosticsBuilderProgram.js @@ -57,13 +57,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} /user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/watchApi/verify-that-module-resolution-with-json-extension-works-when-returned-without-extension.js b/tests/baselines/reference/tscWatch/watchApi/verify-that-module-resolution-with-json-extension-works-when-returned-without-extension.js index c9a2df8bf4199..f6a4f068a3078 100644 --- a/tests/baselines/reference/tscWatch/watchApi/verify-that-module-resolution-with-json-extension-works-when-returned-without-extension.js +++ b/tests/baselines/reference/tscWatch/watchApi/verify-that-module-resolution-with-json-extension-works-when-returned-without-extension.js @@ -67,13 +67,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/index.ts: *new* {} /user/username/projects/myproject/settings.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchApi/verify-that-the-error-count-is-correctly-passed-down-to-the-watch-status-reporter.js b/tests/baselines/reference/tscWatch/watchApi/verify-that-the-error-count-is-correctly-passed-down-to-the-watch-status-reporter.js index 6c618331292c4..1e8968cd06b31 100644 --- a/tests/baselines/reference/tscWatch/watchApi/verify-that-the-error-count-is-correctly-passed-down-to-the-watch-status-reporter.js +++ b/tests/baselines/reference/tscWatch/watchApi/verify-that-the-error-count-is-correctly-passed-down-to-the-watch-status-reporter.js @@ -66,11 +66,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/index.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchApi/when-emitting-with-emitOnlyDtsFiles-with-outFile.js b/tests/baselines/reference/tscWatch/watchApi/when-emitting-with-emitOnlyDtsFiles-with-outFile.js index 8f45154871d11..f65d0bfa97dbc 100644 --- a/tests/baselines/reference/tscWatch/watchApi/when-emitting-with-emitOnlyDtsFiles-with-outFile.js +++ b/tests/baselines/reference/tscWatch/watchApi/when-emitting-with-emitOnlyDtsFiles-with-outFile.js @@ -68,13 +68,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} /user/username/projects/myproject/b.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchApi/when-emitting-with-emitOnlyDtsFiles.js b/tests/baselines/reference/tscWatch/watchApi/when-emitting-with-emitOnlyDtsFiles.js index 54b2ae50abec9..64897b927b7b9 100644 --- a/tests/baselines/reference/tscWatch/watchApi/when-emitting-with-emitOnlyDtsFiles.js +++ b/tests/baselines/reference/tscWatch/watchApi/when-emitting-with-emitOnlyDtsFiles.js @@ -74,13 +74,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/a.ts: *new* {} /user/username/projects/myproject/b.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchApi/when-new-file-is-added-to-the-referenced-project-with-host-implementing-getParsedCommandLine-without-implementing-useSourceOfProjectReferenceRedirect.js b/tests/baselines/reference/tscWatch/watchApi/when-new-file-is-added-to-the-referenced-project-with-host-implementing-getParsedCommandLine-without-implementing-useSourceOfProjectReferenceRedirect.js index 2f0b472803323..e7d34a69b9d44 100644 --- a/tests/baselines/reference/tscWatch/watchApi/when-new-file-is-added-to-the-referenced-project-with-host-implementing-getParsedCommandLine-without-implementing-useSourceOfProjectReferenceRedirect.js +++ b/tests/baselines/reference/tscWatch/watchApi/when-new-file-is-added-to-the-referenced-project-with-host-implementing-getParsedCommandLine-without-implementing-useSourceOfProjectReferenceRedirect.js @@ -80,25 +80,25 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/projects/project2/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: *new* - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/projects/project1/class1.d.ts: *new* {} +/user/username/projects/myproject/projects/project1/tsconfig.json: *new* + {} /user/username/projects/myproject/projects/project2/class2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/projects/project2/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -234,27 +234,27 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/class3.d.ts: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} /user/username/projects/myproject/projects/project2/class2.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatchesRecursive:: @@ -274,11 +274,11 @@ declare class class3 {} PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} @@ -288,15 +288,15 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} /user/username/projects/myproject/projects/project2/class2.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatchesRecursive:: @@ -349,27 +349,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/user/username/projects/myproject/projects/project2/class2.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project1/tsconfig.json: {} -/user/username/projects/myproject/projects/project1/class3.d.ts: *new* +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatchesRecursive:: @@ -530,27 +530,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/class3.d.ts: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} /user/username/projects/myproject/projects/project2/class2.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatches *deleted*:: @@ -635,11 +635,11 @@ declare class class3 {} PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} @@ -649,15 +649,15 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} /user/username/projects/myproject/projects/project2/class2.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatchesRecursive:: @@ -710,27 +710,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/user/username/projects/myproject/projects/project2/class2.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project1/tsconfig.json: {} -/user/username/projects/myproject/projects/project1/class3.d.ts: *new* +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/watchApi/when-new-file-is-added-to-the-referenced-project-with-host-implementing-getParsedCommandLine.js b/tests/baselines/reference/tscWatch/watchApi/when-new-file-is-added-to-the-referenced-project-with-host-implementing-getParsedCommandLine.js index 4aa46491284ce..3b3d19d139cc0 100644 --- a/tests/baselines/reference/tscWatch/watchApi/when-new-file-is-added-to-the-referenced-project-with-host-implementing-getParsedCommandLine.js +++ b/tests/baselines/reference/tscWatch/watchApi/when-new-file-is-added-to-the-referenced-project-with-host-implementing-getParsedCommandLine.js @@ -80,25 +80,25 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/projects/project2/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: *new* - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/projects/project1/class1.ts: *new* {} +/user/username/projects/myproject/projects/project1/tsconfig.json: *new* + {} /user/username/projects/myproject/projects/project2/class2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/projects/project2/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -233,27 +233,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.ts: {} -/user/username/projects/myproject/projects/project2/class2.ts: +/user/username/projects/myproject/projects/project1/class3.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project1/tsconfig.json: {} -/user/username/projects/myproject/projects/project1/class3.ts: *new* +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/watchApi/when-watching-referenced-project-when-there-is-no-config-file-name.js b/tests/baselines/reference/tscWatch/watchApi/when-watching-referenced-project-when-there-is-no-config-file-name.js index 8954316629011..a5b31158ddbfd 100644 --- a/tests/baselines/reference/tscWatch/watchApi/when-watching-referenced-project-when-there-is-no-config-file-name.js +++ b/tests/baselines/reference/tscWatch/watchApi/when-watching-referenced-project-when-there-is-no-config-file-name.js @@ -78,13 +78,13 @@ Shape signatures in builder refreshed for:: /user/username/projects/project/app.ts (used version) FsWatches:: -/user/username/projects/project/lib/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/project/app.ts: *new* {} /user/username/projects/project/lib/index.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/project/lib/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/watchApi/when-watching-referenced-project-with-extends-when-there-is-no-config-file-name.js b/tests/baselines/reference/tscWatch/watchApi/when-watching-referenced-project-with-extends-when-there-is-no-config-file-name.js index 91a0ac864216a..b7757a47cd7cf 100644 --- a/tests/baselines/reference/tscWatch/watchApi/when-watching-referenced-project-with-extends-when-there-is-no-config-file-name.js +++ b/tests/baselines/reference/tscWatch/watchApi/when-watching-referenced-project-with-extends-when-there-is-no-config-file-name.js @@ -79,15 +79,15 @@ Shape signatures in builder refreshed for:: /user/username/projects/project/app.ts (used version) FsWatches:: -/user/username/projects/project/lib/tsconfig.json: *new* - {} -/user/username/projects/project/lib/tsconfig.base.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/project/app.ts: *new* {} /user/username/projects/project/lib/index.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/project/lib/tsconfig.base.json: *new* + {} +/user/username/projects/project/lib/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/watchApi/without-timesouts-on-host-program-gets-updated.js b/tests/baselines/reference/tscWatch/watchApi/without-timesouts-on-host-program-gets-updated.js index dc7dee5fcae19..80aad326d0124 100644 --- a/tests/baselines/reference/tscWatch/watchApi/without-timesouts-on-host-program-gets-updated.js +++ b/tests/baselines/reference/tscWatch/watchApi/without-timesouts-on-host-program-gets-updated.js @@ -51,11 +51,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -107,14 +107,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/main.ts: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject/bar.ts: *new* {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/fsEvent-for-change-is-repeated.js b/tests/baselines/reference/tscWatch/watchEnvironment/fsEvent-for-change-is-repeated.js index 93b4b07e298df..b2e0f7ef8e9a1 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/fsEvent-for-change-is-repeated.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/fsEvent-for-change-is-repeated.js @@ -52,16 +52,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/project/main.ts (used version) PolledWatches:: -/user/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/project/main.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/project/main.ts: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/fsWatch/when-using-file-watching-thats-on-inode-when-rename-event-ends-with-tilde.js b/tests/baselines/reference/tscWatch/watchEnvironment/fsWatch/when-using-file-watching-thats-on-inode-when-rename-event-ends-with-tilde.js index 2131b29b4cb23..e2bc97e462f9e 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/fsWatch/when-using-file-watching-thats-on-inode-when-rename-event-ends-with-tilde.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/fsWatch/when-using-file-watching-thats-on-inode-when-rename-event-ends-with-tilde.js @@ -73,16 +73,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {"inode":10} +/a/lib/lib.d.ts: *new* + {"inode":3} +/user/username/projects/myproject: *new* + {"inode":7} /user/username/projects/myproject/foo.d.ts: *new* {"inode":9} /user/username/projects/myproject/main.ts: *new* {"inode":8} -/user/username/projects/myproject: *new* - {"inode":7} -/a/lib/lib.d.ts: *new* - {"inode":3} +/user/username/projects/myproject/tsconfig.json: *new* + {"inode":10} exitCode:: ExitStatus.undefined @@ -108,16 +108,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {"inode":10} -/user/username/projects/myproject/main.ts: - {"inode":8} -/user/username/projects/myproject: - {"inode":7} /a/lib/lib.d.ts: {"inode":3} +/user/username/projects/myproject: + {"inode":7} /user/username/projects/myproject/foo.d.ts: {"inode":12} *new* +/user/username/projects/myproject/main.ts: + {"inode":8} +/user/username/projects/myproject/tsconfig.json: + {"inode":10} FsWatches *deleted*:: /user/username/projects/myproject/foo.d.ts: @@ -212,16 +212,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {"inode":10} -/user/username/projects/myproject/main.ts: - {"inode":8} -/user/username/projects/myproject: - {"inode":7} /a/lib/lib.d.ts: {"inode":3} +/user/username/projects/myproject: + {"inode":7} /user/username/projects/myproject/foo.d.ts: {"inode":13} *new* +/user/username/projects/myproject/main.ts: + {"inode":8} +/user/username/projects/myproject/tsconfig.json: + {"inode":10} FsWatches *deleted*:: /user/username/projects/myproject/foo.d.ts: diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/fsWatch/when-using-file-watching-thats-on-inode-when-rename-occurs-when-file-is-still-on-the-disk.js b/tests/baselines/reference/tscWatch/watchEnvironment/fsWatch/when-using-file-watching-thats-on-inode-when-rename-occurs-when-file-is-still-on-the-disk.js index e9a65d1b404cf..1e46e82d9ba1c 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/fsWatch/when-using-file-watching-thats-on-inode-when-rename-occurs-when-file-is-still-on-the-disk.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/fsWatch/when-using-file-watching-thats-on-inode-when-rename-occurs-when-file-is-still-on-the-disk.js @@ -69,14 +69,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {"inode":10} +/a/lib/lib.d.ts: *new* + {"inode":3} /user/username/projects/myproject/foo.ts: *new* {"inode":9} /user/username/projects/myproject/main.ts: *new* {"inode":8} -/a/lib/lib.d.ts: *new* - {"inode":3} +/user/username/projects/myproject/tsconfig.json: *new* + {"inode":10} exitCode:: ExitStatus.undefined @@ -107,14 +107,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {"inode":10} -/user/username/projects/myproject/main.ts: - {"inode":8} /a/lib/lib.d.ts: {"inode":3} /user/username/projects/myproject/foo.ts: {"inode":13} *new* +/user/username/projects/myproject/main.ts: + {"inode":8} +/user/username/projects/myproject/tsconfig.json: + {"inode":10} FsWatches *deleted*:: /user/username/projects/myproject/foo.ts: @@ -183,14 +183,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {"inode":10} -/user/username/projects/myproject/main.ts: - {"inode":8} /a/lib/lib.d.ts: {"inode":3} /user/username/projects/myproject/foo.ts: {"inode":14} *new* +/user/username/projects/myproject/main.ts: + {"inode":8} +/user/username/projects/myproject/tsconfig.json: + {"inode":10} FsWatches *deleted*:: /user/username/projects/myproject/foo.ts: diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/fsWatch/when-using-file-watching-thats-on-inode.js b/tests/baselines/reference/tscWatch/watchEnvironment/fsWatch/when-using-file-watching-thats-on-inode.js index 242de21e99149..542706ed57178 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/fsWatch/when-using-file-watching-thats-on-inode.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/fsWatch/when-using-file-watching-thats-on-inode.js @@ -73,16 +73,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {"inode":10} +/a/lib/lib.d.ts: *new* + {"inode":3} +/user/username/projects/myproject: *new* + {"inode":7} /user/username/projects/myproject/foo.d.ts: *new* {"inode":9} /user/username/projects/myproject/main.ts: *new* {"inode":8} -/user/username/projects/myproject: *new* - {"inode":7} -/a/lib/lib.d.ts: *new* - {"inode":3} +/user/username/projects/myproject/tsconfig.json: *new* + {"inode":10} exitCode:: ExitStatus.undefined @@ -108,16 +108,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {"inode":10} -/user/username/projects/myproject/main.ts: - {"inode":8} -/user/username/projects/myproject: - {"inode":7} /a/lib/lib.d.ts: {"inode":3} +/user/username/projects/myproject: + {"inode":7} /user/username/projects/myproject/foo.d.ts: {"inode":12} *new* +/user/username/projects/myproject/main.ts: + {"inode":8} +/user/username/projects/myproject/tsconfig.json: + {"inode":10} FsWatches *deleted*:: /user/username/projects/myproject/foo.d.ts: @@ -200,16 +200,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {"inode":10} -/user/username/projects/myproject/main.ts: - {"inode":8} -/user/username/projects/myproject: - {"inode":7} /a/lib/lib.d.ts: {"inode":3} +/user/username/projects/myproject: + {"inode":7} /user/username/projects/myproject/foo.d.ts: {"inode":13} *new* +/user/username/projects/myproject/main.ts: + {"inode":8} +/user/username/projects/myproject/tsconfig.json: + {"inode":10} FsWatches *deleted*:: /user/username/projects/myproject/foo.d.ts: diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/fsWatch/when-using-file-watching-thats-when-rename-occurs-when-file-is-still-on-the-disk.js b/tests/baselines/reference/tscWatch/watchEnvironment/fsWatch/when-using-file-watching-thats-when-rename-occurs-when-file-is-still-on-the-disk.js index 6ea1c105c8ae9..c39cbae1f9108 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/fsWatch/when-using-file-watching-thats-when-rename-occurs-when-file-is-still-on-the-disk.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/fsWatch/when-using-file-watching-thats-when-rename-occurs-when-file-is-still-on-the-disk.js @@ -69,13 +69,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/foo.ts: *new* {} /user/username/projects/myproject/main.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/uses-non-recursive-dynamic-polling-when-renaming-file-in-subfolder.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/uses-non-recursive-dynamic-polling-when-renaming-file-in-subfolder.js index 44072e0cf38ad..b88c0010d0904 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/uses-non-recursive-dynamic-polling-when-renaming-file-in-subfolder.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/uses-non-recursive-dynamic-polling-when-renaming-file-in-subfolder.js @@ -45,11 +45,11 @@ Shape signatures in builder refreshed for:: /a/username/project/src/file1.ts (used version) FsWatches:: -/a/username/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /a/username/project/src/file1.ts: *new* {} -/a/lib/lib.d.ts: *new* +/a/username/project/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined @@ -103,12 +103,12 @@ Shape signatures in builder refreshed for:: /a/username/project/src/file2.ts (used version) FsWatches:: -/a/username/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /a/username/project/src/file2.ts: *new* {} +/a/username/project/tsconfig.json: + {} FsWatches *deleted*:: /a/username/project/src/file1.ts: diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/uses-non-recursive-watchDirectory-when-renaming-file-in-subfolder.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/uses-non-recursive-watchDirectory-when-renaming-file-in-subfolder.js index bfe9341fe8561..3067d9f39aba9 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/uses-non-recursive-watchDirectory-when-renaming-file-in-subfolder.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/uses-non-recursive-watchDirectory-when-renaming-file-in-subfolder.js @@ -49,16 +49,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/username/project/tsconfig.json: *new* - {} -/a/username/project/src/file1.ts: *new* - {} /a/lib/lib.d.ts: *new* {} /a/username/project: *new* {} /a/username/project/src: *new* {} +/a/username/project/src/file1.ts: *new* + {} +/a/username/project/tsconfig.json: *new* + {} exitCode:: ExitStatus.undefined @@ -103,8 +103,6 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/username/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /a/username/project: @@ -113,6 +111,8 @@ FsWatches:: {} /a/username/project/src/file2.ts: *new* {} +/a/username/project/tsconfig.json: + {} FsWatches *deleted*:: /a/username/project/src/file1.ts: diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/uses-watchFile-when-renaming-file-in-subfolder.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/uses-watchFile-when-renaming-file-in-subfolder.js index 29b2ba6433063..26dc21eb48748 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/uses-watchFile-when-renaming-file-in-subfolder.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/uses-watchFile-when-renaming-file-in-subfolder.js @@ -45,19 +45,19 @@ Shape signatures in builder refreshed for:: /a/username/project/src/file1.ts (used version) PolledWatches:: -/a/username/project/node_modules/@types: *new* - {"pollingInterval":500} /a/username/project: *new* {"pollingInterval":500} +/a/username/project/node_modules/@types: *new* + {"pollingInterval":500} /a/username/project/src: *new* {"pollingInterval":500} FsWatches:: -/a/username/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /a/username/project/src/file1.ts: *new* {} -/a/lib/lib.d.ts: *new* +/a/username/project/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined @@ -100,20 +100,20 @@ Shape signatures in builder refreshed for:: /a/username/project/src/file2.ts (used version) PolledWatches:: -/a/username/project/node_modules/@types: - {"pollingInterval":500} /a/username/project: {"pollingInterval":500} +/a/username/project/node_modules/@types: + {"pollingInterval":500} /a/username/project/src: {"pollingInterval":500} FsWatches:: -/a/username/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /a/username/project/src/file2.ts: *new* {} +/a/username/project/tsconfig.json: + {} FsWatches *deleted*:: /a/username/project/src/file1.ts: diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/when-there-are-symlinks-to-folders-in-recursive-folders.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/when-there-are-symlinks-to-folders-in-recursive-folders.js index 0adc883d18455..c5e3bb3392472 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/when-there-are-symlinks-to-folders-in-recursive-folders.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/when-there-are-symlinks-to-folders-in-recursive-folders.js @@ -95,27 +95,27 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/user/projects/myproject/tsconfig.json: *new* - {} -/home/user/projects/myproject/src/file.ts: *new* - {} -/home/user/projects/myproject/node_modules/reala/index.d.ts: *new* - {} /a/lib/lib.d.ts: *new* {} -/home/user/projects/myproject/src: *new* +/home/user/projects/myproject: *new* {} /home/user/projects/myproject/node_modules: *new* {} /home/user/projects/myproject/node_modules/reala: *new* {} +/home/user/projects/myproject/node_modules/reala/index.d.ts: *new* + {} /home/user/projects/myproject/node_modules/reala/node_modules: *new* {} /home/user/projects/myproject/node_modules/realb: *new* {} /home/user/projects/myproject/node_modules/realb/node_modules: *new* {} -/home/user/projects/myproject: *new* +/home/user/projects/myproject/src: *new* + {} +/home/user/projects/myproject/src/file.ts: *new* + {} +/home/user/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/with-non-synchronous-watch-directory-renaming-a-file.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/with-non-synchronous-watch-directory-renaming-a-file.js index 8d94c1095a7ee..6048d8820cac2 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/with-non-synchronous-watch-directory-renaming-a-file.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/with-non-synchronous-watch-directory-renaming-a-file.js @@ -57,12 +57,6 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/src/file1.ts: *new* - {} -/user/username/projects/myproject/src/file2.ts: *new* - {} /a/lib/lib.d.ts: *new* {} /user/username/projects/myproject: *new* @@ -71,6 +65,12 @@ FsWatches:: {} /user/username/projects/myproject/src: *new* {} +/user/username/projects/myproject/src/file1.ts: *new* + {} +/user/username/projects/myproject/src/file2.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* + {} exitCode:: ExitStatus.undefined @@ -140,16 +140,12 @@ Shape signatures in builder refreshed for:: PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/src/file2.ts: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/file1.ts: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject: @@ -158,6 +154,10 @@ FsWatches:: {} /user/username/projects/myproject/src: {} +/user/username/projects/myproject/src/file1.ts: + {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/src/file2.ts: @@ -223,10 +223,6 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/file1.ts: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject: @@ -235,8 +231,12 @@ FsWatches:: {} /user/username/projects/myproject/src: {} +/user/username/projects/myproject/src/file1.ts: + {} /user/username/projects/myproject/src/renamed.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/with-non-synchronous-watch-directory-with-outDir-and-declaration-enabled.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/with-non-synchronous-watch-directory-with-outDir-and-declaration-enabled.js index 90c1c45047102..b1807b5c68889 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/with-non-synchronous-watch-directory-with-outDir-and-declaration-enabled.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/with-non-synchronous-watch-directory-with-outDir-and-declaration-enabled.js @@ -57,23 +57,23 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/src/file1.ts: *new* - {} -/user/username/projects/myproject/node_modules/file2/index.d.ts: *new* - {} /a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/src: *new* +/user/username/projects/myproject: *new* + {} +/user/username/projects/myproject/dist: *new* {} /user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/node_modules/file2: *new* {} -/user/username/projects/myproject: *new* +/user/username/projects/myproject/node_modules/file2/index.d.ts: *new* {} -/user/username/projects/myproject/dist: *new* +/user/username/projects/myproject/src: *new* + {} +/user/username/projects/myproject/src/file1.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined @@ -155,26 +155,26 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/file1.ts: - {} -/user/username/projects/myproject/node_modules/file2/index.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/src: +/user/username/projects/myproject: + {} +/user/username/projects/myproject/dist: {} /user/username/projects/myproject/node_modules: {} /user/username/projects/myproject/node_modules/file2: {} -/user/username/projects/myproject: +/user/username/projects/myproject/node_modules/file2/index.d.ts: {} -/user/username/projects/myproject/dist: +/user/username/projects/myproject/src: + {} +/user/username/projects/myproject/src/file1.ts: {} /user/username/projects/myproject/src/file3.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/with-non-synchronous-watch-directory.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/with-non-synchronous-watch-directory.js index 66a32c652865f..3903c80e3ea56 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/with-non-synchronous-watch-directory.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/with-non-synchronous-watch-directory.js @@ -57,21 +57,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/src/file1.ts: *new* - {} -/user/username/projects/myproject/node_modules/file2/index.d.ts: *new* - {} /a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/src: *new* +/user/username/projects/myproject: *new* {} /user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/node_modules/file2: *new* {} -/user/username/projects/myproject: *new* +/user/username/projects/myproject/node_modules/file2/index.d.ts: *new* + {} +/user/username/projects/myproject/src: *new* + {} +/user/username/projects/myproject/src/file1.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined @@ -106,19 +106,19 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/myproject/src/file1.ts: +/user/username/projects/myproject: {} -/user/username/projects/myproject/node_modules/file2/index.d.ts: +/user/username/projects/myproject/node_modules: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/node_modules/file2/index.d.ts: {} /user/username/projects/myproject/src: {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/src/file1.ts: {} -/user/username/projects/myproject: +/user/username/projects/myproject/tsconfig.json: {} FsWatches *deleted*:: @@ -161,23 +161,23 @@ Shape signatures in builder refreshed for:: PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/node_modules: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/myproject/src/file1.ts: +/user/username/projects/myproject: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/node_modules: {} /user/username/projects/myproject/src: {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/src/file1.ts: {} -/user/username/projects/myproject: +/user/username/projects/myproject/tsconfig.json: {} FsWatches *deleted*:: @@ -285,26 +285,26 @@ Output:: PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/node_modules: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/file1.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/src: +/user/username/projects/myproject: {} /user/username/projects/myproject/node_modules: {} -/user/username/projects/myproject: - {} /user/username/projects/myproject/node_modules/file2: *new* {} +/user/username/projects/myproject/src: + {} +/user/username/projects/myproject/src/file1.ts: + {} +/user/username/projects/myproject/tsconfig.json: + {} exitCode:: ExitStatus.undefined @@ -365,22 +365,22 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/file1.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/src: +/user/username/projects/myproject: {} /user/username/projects/myproject/node_modules: {} -/user/username/projects/myproject: - {} /user/username/projects/myproject/node_modules/file2: {} /user/username/projects/myproject/node_modules/file2/index.d.ts: *new* {} +/user/username/projects/myproject/src: + {} +/user/username/projects/myproject/src/file1.ts: + {} +/user/username/projects/myproject/tsconfig.json: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-extendedDiagnostics.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-extendedDiagnostics.js index da1ed2da621f9..0cb47c338e91e 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-extendedDiagnostics.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-extendedDiagnostics.js @@ -86,22 +86,22 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/src/main.ts: *new* +/user/username/projects/myproject/node_modules/bar/foo.d.ts: *new* {} /user/username/projects/myproject/node_modules/bar/index.d.ts: *new* {} -/user/username/projects/myproject/node_modules/bar/foo.d.ts: *new* +/user/username/projects/myproject/src/main.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: *new* - {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/src: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-with-recursive-directory-watching-extendedDiagnostics.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-with-recursive-directory-watching-extendedDiagnostics.js index d6178f58bc0ad..36baa6add6fac 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-with-recursive-directory-watching-extendedDiagnostics.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-with-recursive-directory-watching-extendedDiagnostics.js @@ -88,11 +88,9 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/src/main.ts: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/node_modules/bar/index.d.ts: *new* +/user/username/projects/myproject: *new* {} /user/username/projects/myproject/node_modules: *new* {} @@ -100,11 +98,13 @@ FsWatches:: {} /user/username/projects/myproject/node_modules/bar/foo.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/node_modules/bar/index.d.ts: *new* {} /user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject: *new* +/user/username/projects/myproject/src/main.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-with-recursive-directory-watching.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-with-recursive-directory-watching.js index f531cad3b1e0c..a7829cedc4f84 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-with-recursive-directory-watching.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-with-recursive-directory-watching.js @@ -69,11 +69,9 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/src/main.ts: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/node_modules/bar/index.d.ts: *new* +/user/username/projects/myproject: *new* {} /user/username/projects/myproject/node_modules: *new* {} @@ -81,11 +79,13 @@ FsWatches:: {} /user/username/projects/myproject/node_modules/bar/foo.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/node_modules/bar/index.d.ts: *new* {} /user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject: *new* +/user/username/projects/myproject/src/main.ts: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option.js index 19200ad58f381..ed5d800b6f231 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option.js @@ -67,22 +67,22 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/src/main.ts: *new* +/user/username/projects/myproject/node_modules/bar/foo.d.ts: *new* {} /user/username/projects/myproject/node_modules/bar/index.d.ts: *new* {} -/user/username/projects/myproject/node_modules/bar/foo.d.ts: *new* +/user/username/projects/myproject/src/main.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: *new* - {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/src: *new* + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option-extendedDiagnostics.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option-extendedDiagnostics.js index 20520188f76ba..5c50f0ac49cd3 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option-extendedDiagnostics.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option-extendedDiagnostics.js @@ -90,20 +90,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src/main.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject: *new* + {} /user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject: *new* - {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option.js index 3ca55fe8e7a54..856fc5464600e 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option.js @@ -69,20 +69,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src/main.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject: *new* + {} /user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject: *new* - {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-fallbackPolling-option.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-fallbackPolling-option.js index 8be938abd5188..43e6ba05deb95 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-fallbackPolling-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-fallbackPolling-option.js @@ -56,16 +56,16 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/tsconfig.json: *new* - {"pollingInterval":2000} +/a/b: *new* + {"pollingInterval":500} /a/b/commonfile1.ts: *new* {"pollingInterval":250} /a/b/commonfile2.ts: *new* {"pollingInterval":250} +/a/b/tsconfig.json: *new* + {"pollingInterval":2000} /a/lib/lib.d.ts: *new* {"pollingInterval":250} -/a/b: *new* - {"pollingInterval":500} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchDirectory-option.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchDirectory-option.js index 0547294c7820b..748c392319ecb 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchDirectory-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchDirectory-option.js @@ -51,15 +51,15 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* +/a/b: *new* {} /a/b/commonfile1.ts: *new* {} /a/b/commonfile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/a/b/tsconfig.json: *new* {} -/a/b: *new* +/a/lib/lib.d.ts: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchFile-as-watch-options-to-extend.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchFile-as-watch-options-to-extend.js index 3008f426f6290..7d31d67153ca2 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchFile-as-watch-options-to-extend.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchFile-as-watch-options-to-extend.js @@ -51,12 +51,12 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/commonfile1.ts: *new* {} /a/b/commonfile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchFile-option.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchFile-option.js index 227a0adc139ef..cf37200fa12ed 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchFile-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchFile-option.js @@ -51,12 +51,12 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/commonfile1.ts: *new* {} /a/b/commonfile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tsserver/applyChangesToOpenFiles/with-applyChangedToOpenFiles-request.js b/tests/baselines/reference/tsserver/applyChangesToOpenFiles/with-applyChangedToOpenFiles-request.js index be37f9ccf478c..5c9caae05a8b8 100644 --- a/tests/baselines/reference/tsserver/applyChangesToOpenFiles/with-applyChangedToOpenFiles-request.js +++ b/tests/baselines/reference/tsserver/applyChangesToOpenFiles/with-applyChangedToOpenFiles-request.js @@ -97,14 +97,14 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/commonfile1.ts: *new* {} /a/b/commonfile2.ts: *new* {} /a/b/file3.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -154,12 +154,12 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: - {} /a/b/commonfile1.ts: {} /a/b/commonfile2.ts: {} +/a/b/tsconfig.json: + {} /a/lib/lib.d.ts: {} @@ -252,12 +252,12 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: +/a/b/file3.ts: *new* + {} /a/b/tsconfig.json: {} /a/lib/lib.d.ts: {} -/a/b/file3.ts: *new* - {} FsWatches *deleted*:: /a/b/commonfile1.ts: diff --git a/tests/baselines/reference/tsserver/applyChangesToOpenFiles/with-updateOpen-request.js b/tests/baselines/reference/tsserver/applyChangesToOpenFiles/with-updateOpen-request.js index fda49e9ee5bd7..90d2c4d76f7b2 100644 --- a/tests/baselines/reference/tsserver/applyChangesToOpenFiles/with-updateOpen-request.js +++ b/tests/baselines/reference/tsserver/applyChangesToOpenFiles/with-updateOpen-request.js @@ -97,14 +97,14 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/commonfile1.ts: *new* {} /a/b/commonfile2.ts: *new* {} /a/b/file3.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -154,12 +154,12 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: - {} /a/b/commonfile1.ts: {} /a/b/commonfile2.ts: {} +/a/b/tsconfig.json: + {} /a/lib/lib.d.ts: {} @@ -260,12 +260,12 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: +/a/b/file3.ts: *new* + {} /a/b/tsconfig.json: {} /a/lib/lib.d.ts: {} -/a/b/file3.ts: *new* - {} FsWatches *deleted*:: /a/b/commonfile1.ts: diff --git a/tests/baselines/reference/tsserver/autoImportProvider/Auto-importable-file-is-in-inferred-project-until-imported.js b/tests/baselines/reference/tsserver/autoImportProvider/Auto-importable-file-is-in-inferred-project-until-imported.js index d0e94ae1871ec..5645bc03a3a7c 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/Auto-importable-file-is-in-inferred-project-until-imported.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/Auto-importable-file-is-in-inferred-project-until-imported.js @@ -105,12 +105,12 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/node_modules/@angular/forms/node_modules/@types: - {"pollingInterval":500} /node_modules/@angular/forms/bower_components: *new* {"pollingInterval":500} /node_modules/@angular/forms/node_modules: *new* {"pollingInterval":500} +/node_modules/@angular/forms/node_modules/@types: + {"pollingInterval":500} FsWatches:: /node_modules/@angular/forms/package.json: *new* @@ -188,20 +188,20 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/node_modules/@angular/forms/node_modules/@types: - {"pollingInterval":500} /node_modules/@angular/forms/bower_components: {"pollingInterval":500} /node_modules/@angular/forms/node_modules: {"pollingInterval":500} +/node_modules/@angular/forms/node_modules/@types: + {"pollingInterval":500} FsWatches:: /node_modules/@angular/forms/package.json: {} -/tsconfig.json: *new* - {} /package.json: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/autoImportProvider/Closes-AutoImportProviderProject-when-host-project-closes.js b/tests/baselines/reference/tsserver/autoImportProvider/Closes-AutoImportProviderProject-when-host-project-closes.js index 9ba54f623251e..6e9540f5fa7bb 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/Closes-AutoImportProviderProject-when-host-project-closes.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/Closes-AutoImportProviderProject-when-host-project-closes.js @@ -90,10 +90,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /package.json: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/autoImportProvider/Does-not-close-when-root-files-are-redirects-that-dont-actually-exist.js b/tests/baselines/reference/tsserver/autoImportProvider/Does-not-close-when-root-files-are-redirects-that-dont-actually-exist.js index affe91a5ff374..07e12d9129b3f 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/Does-not-close-when-root-files-are-redirects-that-dont-actually-exist.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/Does-not-close-when-root-files-are-redirects-that-dont-actually-exist.js @@ -114,17 +114,17 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/packages/a/tsconfig.json: *new* - {} /packages/a/node_modules/b/tsconfig.json: *new* {} /packages/a/package.json: *new* {} +/packages/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /packages/a: *new* {} -/packages/a/node_modules/b: *new* - {} /packages/a/node_modules: *new* {} +/packages/a/node_modules/b: *new* + {} diff --git a/tests/baselines/reference/tsserver/autoImportProvider/Does-not-create-an-auto-import-provider-if-there-are-too-many-dependencies.js b/tests/baselines/reference/tsserver/autoImportProvider/Does-not-create-an-auto-import-provider-if-there-are-too-many-dependencies.js index bc2503de034af..ad4bd7066d3be 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/Does-not-create-an-auto-import-provider-if-there-are-too-many-dependencies.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/Does-not-create-an-auto-import-provider-if-there-are-too-many-dependencies.js @@ -132,10 +132,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /package.json: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/autoImportProvider/Does-not-create-auto-import-providers-upon-opening-projects-for-find-all-references.js b/tests/baselines/reference/tsserver/autoImportProvider/Does-not-create-auto-import-providers-upon-opening-projects-for-find-all-references.js index 6ed1ce5e3c5d4..8f80ab356e8ad 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/Does-not-create-auto-import-providers-upon-opening-projects-for-find-all-references.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/Does-not-create-auto-import-providers-upon-opening-projects-for-find-all-references.js @@ -116,20 +116,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/packages/b/tsconfig.json: *new* +/package.json: *new* {} /packages/b/package.json: *new* {} -/package.json: *new* +/packages/b/tsconfig.json: *new* {} /tsconfig.json: *new* {} FsWatchesRecursive:: -/packages/b: *new* - {} /node_modules: *new* {} +/packages/b: *new* + {} Before request @@ -294,25 +294,25 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/packages/b/tsconfig.json: - {} -/packages/b/package.json: - {} /package.json: {} -/tsconfig.json: - {} /packages/a/index.ts: *new* {} /packages/a/tsconfig.json: *new* {} +/packages/b/package.json: + {} +/packages/b/tsconfig.json: + {} +/tsconfig.json: + {} FsWatchesRecursive:: -/packages/b: +/: *new* {} /node_modules: {} -/: *new* - {} /packages/a: *new* {} +/packages/b: + {} diff --git a/tests/baselines/reference/tsserver/autoImportProvider/Recovers-from-an-unparseable-package_json.js b/tests/baselines/reference/tsserver/autoImportProvider/Recovers-from-an-unparseable-package_json.js index 63450f2ed7063..797c66d786537 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/Recovers-from-an-unparseable-package_json.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/Recovers-from-an-unparseable-package_json.js @@ -72,10 +72,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /package.json: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-automatic-changes-in-node_modules.js b/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-automatic-changes-in-node_modules.js index 5d3481e40fa37..ed318bd5e9349 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-automatic-changes-in-node_modules.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-automatic-changes-in-node_modules.js @@ -99,10 +99,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /package.json: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-manual-changes-in-node_modules.js b/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-manual-changes-in-node_modules.js index 463d8571d3676..32bdca4c83fc3 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-manual-changes-in-node_modules.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-manual-changes-in-node_modules.js @@ -99,10 +99,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /package.json: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* @@ -146,10 +146,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /package.json: {} +/tsconfig.json: + {} FsWatchesRecursive:: /: @@ -207,11 +207,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/a/data/package.json: *new* {} /package.json: {} -/a/data/package.json: *new* +/tsconfig.json: {} FsWatchesRecursive:: @@ -266,22 +266,22 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/node_modules/@angular/forms/node_modules/@types: - {"pollingInterval":500} /node_modules/@angular/forms/bower_components: *new* {"pollingInterval":500} /node_modules/@angular/forms/node_modules: *new* {"pollingInterval":500} +/node_modules/@angular/forms/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} -/package.json: - {} /a/data/package.json: {} /node_modules/@angular/forms/package.json: *new* {} +/package.json: + {} +/tsconfig.json: + {} FsWatchesRecursive:: /: diff --git a/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-package_json-changes.js b/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-package_json-changes.js index bc1841e6c431e..ec85a6e146d7c 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-package_json-changes.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-package_json-changes.js @@ -72,10 +72,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /package.json: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/autoImportProvider/Reuses-autoImportProvider-when-program-structure-is-unchanged.js b/tests/baselines/reference/tsserver/autoImportProvider/Reuses-autoImportProvider-when-program-structure-is-unchanged.js index 67be53530c21c..6226717fae4bb 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/Reuses-autoImportProvider-when-program-structure-is-unchanged.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/Reuses-autoImportProvider-when-program-structure-is-unchanged.js @@ -90,10 +90,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /package.json: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/autoImportProvider/Shared-source-files-between-AutoImportProvider-and-main-program.js b/tests/baselines/reference/tsserver/autoImportProvider/Shared-source-files-between-AutoImportProvider-and-main-program.js index fb109d4a584de..00b41a771835b 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/Shared-source-files-between-AutoImportProvider-and-main-program.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/Shared-source-files-between-AutoImportProvider-and-main-program.js @@ -107,12 +107,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /node_modules/@types/node/package.json: *new* {} /package.json: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/autoImportProvider/dependencies-are-already-in-main-program.js b/tests/baselines/reference/tsserver/autoImportProvider/dependencies-are-already-in-main-program.js index c142c49657420..45b4b959d5c83 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/dependencies-are-already-in-main-program.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/dependencies-are-already-in-main-program.js @@ -78,12 +78,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /node_modules/@angular/forms/package.json: *new* {} /package.json: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/autoImportProvider/projects-already-inside-node_modules.js b/tests/baselines/reference/tsserver/autoImportProvider/projects-already-inside-node_modules.js index ddecb5b64f6df..796db995d8e01 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/projects-already-inside-node_modules.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/projects-already-inside-node_modules.js @@ -104,12 +104,12 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/node_modules/@angular/forms/node_modules/@types: - {"pollingInterval":500} /node_modules/@angular/forms/bower_components: *new* {"pollingInterval":500} /node_modules/@angular/forms/node_modules: *new* {"pollingInterval":500} +/node_modules/@angular/forms/node_modules/@types: + {"pollingInterval":500} FsWatches:: /node_modules/@angular/forms/package.json: *new* diff --git a/tests/baselines/reference/tsserver/autoImportProvider/without-dependencies-listed.js b/tests/baselines/reference/tsserver/autoImportProvider/without-dependencies-listed.js index 0cf559aab61f7..3e35ed1d2cf7e 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/without-dependencies-listed.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/without-dependencies-listed.js @@ -72,10 +72,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /package.json: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/includes-the-parent-folder-FLLs-in-Classic-module-resolution-mode.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/includes-the-parent-folder-FLLs-in-Classic-module-resolution-mode.js index 5765d0e1898eb..3c5d184eef365 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/includes-the-parent-folder-FLLs-in-Classic-module-resolution-mode.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/includes-the-parent-folder-FLLs-in-Classic-module-resolution-mode.js @@ -100,17 +100,17 @@ export {} PolledWatches:: /users/username/projects/node_modules: *new* {"pollingInterval":500} -/users/username/projects/proj/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/proj/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/proj/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/proj/foo/boo/moo/app.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/proj/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -176,21 +176,21 @@ Info seq [hh:mm:ss:mss] Projects: /users/username/projects/proj/tsconfig.json After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/proj/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/proj/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/node_modules: {"pollingInterval":500} FsWatches:: -/users/username/projects/proj/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/proj/foo/boo/moo/app.ts: {} -/a/lib/lib.d.ts: +/users/username/projects/proj/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/includes-the-parent-folder-FLLs-in-Node-module-resolution-mode.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/includes-the-parent-folder-FLLs-in-Node-module-resolution-mode.js index 03dc45fee8d31..897b3e326d8bc 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/includes-the-parent-folder-FLLs-in-Node-module-resolution-mode.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/includes-the-parent-folder-FLLs-in-Node-module-resolution-mode.js @@ -100,17 +100,17 @@ export {} PolledWatches:: /users/username/projects/node_modules: *new* {"pollingInterval":500} -/users/username/projects/proj/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/proj/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/proj/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/proj/foo/boo/moo/app.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/proj/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -176,21 +176,21 @@ Info seq [hh:mm:ss:mss] Projects: /users/username/projects/proj/tsconfig.json After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/proj/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/proj/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/node_modules: {"pollingInterval":500} FsWatches:: -/users/username/projects/proj/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/proj/foo/boo/moo/app.ts: {} -/a/lib/lib.d.ts: +/users/username/projects/proj/tsconfig.json: {} FsWatchesRecursive:: 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 810c8c3da8721..1a61caf38f75c 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/loads-missing-files-from-disk.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/loads-missing-files-from-disk.js @@ -57,18 +57,18 @@ export var y = 1 PolledWatches:: -/users/username/projects/project/tsconfig.json: *new* - {"pollingInterval":2000} +/users/username/projects/node_modules: *new* + {"pollingInterval":500} +/users/username/projects/node_modules/@types: *new* + {"pollingInterval":500} /users/username/projects/project/jsconfig.json: *new* {"pollingInterval":2000} /users/username/projects/project/node_modules: *new* {"pollingInterval":500} -/users/username/projects/node_modules: *new* - {"pollingInterval":500} /users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} -/users/username/projects/node_modules/@types: *new* - {"pollingInterval":500} +/users/username/projects/project/tsconfig.json: *new* + {"pollingInterval":2000} FsWatches:: /users/username/projects: *new* 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 2a29abebf4b90..9bbb5c2ae394f 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 @@ -537,26 +537,26 @@ exports['default'] = result; PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: *new* - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: *new* - {"pollingInterval":500} /user/username/rootfolder/node_modules: *new* {"pollingInterval":500} +/user/username/rootfolder/node_modules/@types: *new* + {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/b/node_modules/@types: *new* {"pollingInterval":500} +/user/username/rootfolder/otherfolder/a/node_modules: *new* + {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: *new* +/user/username/rootfolder/otherfolder/node_modules: *new* {"pollingInterval":500} -/user/username/rootfolder/node_modules/@types: *new* +/user/username/rootfolder/otherfolder/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/rootfolder/otherfolder/a/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b: *new* @@ -1054,17 +1054,17 @@ Immedidate callback:: count: 0 //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041] deleted PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: +/user/username/rootfolder/node_modules: {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: +/user/username/rootfolder/node_modules/@types: {"pollingInterval":500} -/user/username/rootfolder/node_modules: +/user/username/rootfolder/otherfolder/a/node_modules: {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/node_modules/@types: {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: +/user/username/rootfolder/otherfolder/node_modules: {"pollingInterval":500} -/user/username/rootfolder/node_modules/@types: +/user/username/rootfolder/otherfolder/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: @@ -1072,10 +1072,10 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/rootfolder/otherfolder/a/b/tsconfig.json: + {} FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b: @@ -1901,30 +1901,30 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/rootfolder/otherfolder/a/b/t After running Timeout callback:: count: 0 PolledWatches:: +/user/username/rootfolder/node_modules/@types: + {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/node_modules/@types: {"pollingInterval":500} /user/username/rootfolder/otherfolder/node_modules/@types: {"pollingInterval":500} -/user/username/rootfolder/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: +/user/username/rootfolder/node_modules: + {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/node_modules: {"pollingInterval":500} /user/username/rootfolder/otherfolder/node_modules: {"pollingInterval":500} -/user/username/rootfolder/node_modules: - {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} /a/lib/lib.d.ts: {} /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json: *new* {} /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json: *new* {} +/user/username/rootfolder/otherfolder/a/b/tsconfig.json: + {} FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b: 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 21a7c911b8e63..6a505044bc575 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 @@ -536,26 +536,26 @@ exports['default'] = result; PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: *new* - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: *new* - {"pollingInterval":500} /user/username/rootfolder/node_modules: *new* {"pollingInterval":500} +/user/username/rootfolder/node_modules/@types: *new* + {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/b/node_modules/@types: *new* {"pollingInterval":500} +/user/username/rootfolder/otherfolder/a/node_modules: *new* + {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: *new* +/user/username/rootfolder/otherfolder/node_modules: *new* {"pollingInterval":500} -/user/username/rootfolder/node_modules/@types: *new* +/user/username/rootfolder/otherfolder/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/rootfolder/otherfolder/a/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b: *new* @@ -1099,17 +1099,17 @@ Before running Timeout callback:: count: 3 //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041] deleted PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: +/user/username/rootfolder/node_modules: {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: +/user/username/rootfolder/node_modules/@types: {"pollingInterval":500} -/user/username/rootfolder/node_modules: +/user/username/rootfolder/otherfolder/a/node_modules: {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/node_modules/@types: {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: +/user/username/rootfolder/otherfolder/node_modules: {"pollingInterval":500} -/user/username/rootfolder/node_modules/@types: +/user/username/rootfolder/otherfolder/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: @@ -1117,10 +1117,10 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/rootfolder/otherfolder/a/b/tsconfig.json: + {} FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b: @@ -1985,30 +1985,30 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/rootfolder/otherfolder/a/b/t After running Timeout callback:: count: 0 PolledWatches:: +/user/username/rootfolder/node_modules/@types: + {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/node_modules/@types: {"pollingInterval":500} /user/username/rootfolder/otherfolder/node_modules/@types: {"pollingInterval":500} -/user/username/rootfolder/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: +/user/username/rootfolder/node_modules: + {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/node_modules: {"pollingInterval":500} /user/username/rootfolder/otherfolder/node_modules: {"pollingInterval":500} -/user/username/rootfolder/node_modules: - {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} /a/lib/lib.d.ts: {} /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json: *new* {} /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json: *new* {} +/user/username/rootfolder/otherfolder/a/b/tsconfig.json: + {} FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b: 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 90c28692c3419..17cdf3f31c5b6 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 @@ -107,17 +107,17 @@ export class Cookie { } PolledWatches:: -/users/someuser/work/applications/frontend/types: *new* - {"pollingInterval":500} /users/someuser/work/applications/frontend/node_modules: *new* {"pollingInterval":500} +/users/someuser/work/applications/frontend/types: *new* + {"pollingInterval":500} FsWatches:: -/users/someuser/work/applications/frontend/tsconfig.json: *new* +/a/lib/lib.es2016.full.d.ts: *new* {} /users/someuser/work/applications/frontend/src/app/redux/configurestore.ts: *new* {} -/a/lib/lib.es2016.full.d.ts: *new* +/users/someuser/work/applications/frontend/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -166,20 +166,20 @@ Info seq [hh:mm:ss:mss] Projects: /Users/someuser/work/applications/frontend/ After running Timeout callback:: count: 0 PolledWatches:: -/users/someuser/work/applications/frontend/types: - {"pollingInterval":500} /users/someuser/work/applications/frontend/node_modules: {"pollingInterval":500} +/users/someuser/work/applications/frontend/types: + {"pollingInterval":500} FsWatches:: -/users/someuser/work/applications/frontend/tsconfig.json: +/a/lib/lib.es2016.full.d.ts: {} /users/someuser/work/applications/frontend/src/app/redux/configurestore.ts: {} -/a/lib/lib.es2016.full.d.ts: - {} /users/someuser/work/applications/frontend/src/app/utils/cookie.ts: *new* {} +/users/someuser/work/applications/frontend/tsconfig.json: + {} FsWatchesRecursive:: /users/someuser/work/applications/frontend/src: 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 2a91087507d96..1c4fa7c9b4b5e 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 @@ -107,16 +107,16 @@ export class Cookie { } PolledWatches:: -/Users/someuser/work/applications/frontend/types: *new* - {"pollingInterval":500} /Users/someuser/work/applications/frontend/node_modules: *new* {"pollingInterval":500} +/Users/someuser/work/applications/frontend/types: *new* + {"pollingInterval":500} FsWatches:: -/Users/someuser/work/applications/frontend/tsconfig.json: *new* - {} /Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts: *new* {} +/Users/someuser/work/applications/frontend/tsconfig.json: *new* + {} /a/lib/lib.es2016.full.d.ts: *new* {} @@ -166,20 +166,20 @@ Info seq [hh:mm:ss:mss] Projects: /Users/someuser/work/applications/frontend/ After running Timeout callback:: count: 0 PolledWatches:: -/Users/someuser/work/applications/frontend/types: - {"pollingInterval":500} /Users/someuser/work/applications/frontend/node_modules: {"pollingInterval":500} +/Users/someuser/work/applications/frontend/types: + {"pollingInterval":500} FsWatches:: -/Users/someuser/work/applications/frontend/tsconfig.json: - {} /Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts: {} -/a/lib/lib.es2016.full.d.ts: - {} /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts: *new* {} +/Users/someuser/work/applications/frontend/tsconfig.json: + {} +/a/lib/lib.es2016.full.d.ts: + {} FsWatchesRecursive:: /Users/someuser/work/applications/frontend/src: 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 4ca3977a45d78..846c21ef7c56d 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 @@ -94,10 +94,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/models/vessel.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/b/utils/db.ts: *new* {} diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-creating-new-file-in-symlinked-folder.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-creating-new-file-in-symlinked-folder.js index ac4a50dc56209..059a14ff330b2 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-creating-new-file-in-symlinked-folder.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-creating-new-file-in-symlinked-folder.js @@ -98,11 +98,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/client/folder1/module1.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -161,14 +161,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/client/folder1/module1.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/client/linktofolder2/module3.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/client: diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-node_modules-dont-receive-event-for-the-@types-file-addition.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-node_modules-dont-receive-event-for-the-@types-file-addition.js index 00d068354d59c..de718e0ffd4db 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-node_modules-dont-receive-event-for-the-@types-file-addition.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-node_modules-dont-receive-event-for-the-@types-file-addition.js @@ -106,10 +106,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/folder/myproject/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/folder/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/folder/myproject: *new* @@ -155,10 +155,10 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/folder/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/folder/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/folder/myproject: diff --git a/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-not-specified.js b/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-not-specified.js index 9b07441e44702..a3fd6a6af81a8 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-not-specified.js +++ b/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-not-specified.js @@ -100,12 +100,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: *new* + {} /user/username/projects/myproject/app1/tsconfig.json: *new* {} /user/username/projects/myproject/core/core.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} Before request @@ -177,22 +177,22 @@ After request PolledWatches:: /user/username/projects/myproject/app1/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/app2/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} -/user/username/projects/myproject/core/core.ts: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/app1/tsconfig.json: + {} /user/username/projects/myproject/app2/tsconfig.json: *new* {} +/user/username/projects/myproject/core/core.ts: + {} Before request @@ -232,18 +232,18 @@ After request PolledWatches:: /user/username/projects/myproject/app1/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/app2/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/app1/tsconfig.json: + {} /user/username/projects/myproject/app2/tsconfig.json: {} diff --git a/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-specified.js b/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-specified.js index c101c25d76526..c1e543479751f 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-specified.js +++ b/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-specified.js @@ -100,12 +100,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: *new* + {} /user/username/projects/myproject/app1/tsconfig.json: *new* {} /user/username/projects/myproject/core/core.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} Before request @@ -177,22 +177,22 @@ After request PolledWatches:: /user/username/projects/myproject/app1/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/app2/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} -/user/username/projects/myproject/core/core.ts: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/app1/tsconfig.json: + {} /user/username/projects/myproject/app2/tsconfig.json: *new* {} +/user/username/projects/myproject/core/core.ts: + {} Before request @@ -232,18 +232,18 @@ After request PolledWatches:: /user/username/projects/myproject/app1/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/app2/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/app1/tsconfig.json: + {} /user/username/projects/myproject/app2/tsconfig.json: {} diff --git a/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-be-true-if-out-is-set.js b/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-be-true-if-out-is-set.js index 1711ac390442e..84903633a1e25 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-be-true-if-out-is-set.js +++ b/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-be-true-if-out-is-set.js @@ -70,10 +70,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: *new* - {} /a/b.ts: *new* {} +/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /a: *new* diff --git a/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-be-true-if-outFile-is-set.js b/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-be-true-if-outFile-is-set.js index ce27242735adb..886cb5008eafc 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-be-true-if-outFile-is-set.js +++ b/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-be-true-if-outFile-is-set.js @@ -70,10 +70,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: *new* - {} /a/b.ts: *new* {} +/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /a: *new* diff --git a/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-not-be-returned-if-not-set.js b/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-not-be-returned-if-not-set.js index 5b6f865585016..aebac74267c6a 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-not-be-returned-if-not-set.js +++ b/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-not-be-returned-if-not-set.js @@ -69,10 +69,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: *new* - {} /a/b.ts: *new* {} +/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /a: *new* diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-all-projects-without-projectPath.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-all-projects-without-projectPath.js index 0650fbf7bf194..26de16192ada7 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-all-projects-without-projectPath.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-all-projects-without-projectPath.js @@ -76,10 +76,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /a/b: *new* diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-cascaded-affected-file-list.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-cascaded-affected-file-list.js index f580413ccb591..46dcf617eede0 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-cascaded-affected-file-list.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-cascaded-affected-file-list.js @@ -101,14 +101,14 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} /a/b/file1consumer1consumer1.ts: *new* {} /a/b/globalfile3.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -146,12 +146,12 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: - {} /a/b/file1consumer1consumer1.ts: {} /a/b/globalfile3.ts: {} +/a/b/tsconfig.json: + {} /a/lib/lib.d.ts: {} diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-circular-references.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-circular-references.js index bdfbd2eb20a8c..e49e7d27d5338 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-circular-references.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-circular-references.js @@ -77,10 +77,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /a/b: *new* diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-compileOnSave-disabled.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-compileOnSave-disabled.js index 351b826eb5c76..75c920e64e2b5 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-compileOnSave-disabled.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-compileOnSave-disabled.js @@ -91,12 +91,12 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} /a/b/file1consumer2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-compileOnSave-in-base-tsconfig.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-compileOnSave-in-base-tsconfig.js index b7c8124457f29..b0dd6a7782d75 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-compileOnSave-in-base-tsconfig.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-compileOnSave-in-base-tsconfig.js @@ -99,16 +99,16 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} -/a/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} /a/b/file1consumer2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} +/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /a/b: *new* @@ -144,14 +144,14 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: - {} -/a/tsconfig.json: - {} /a/b/file1consumer2.ts: {} +/a/b/tsconfig.json: + {} /a/lib/lib.d.ts: {} +/a/tsconfig.json: + {} FsWatches *deleted*:: /a/b/file1consumer1.ts: diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-detect-changes-in-non-root-files.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-detect-changes-in-non-root-files.js index 9cc3a941c6f3a..487ffa4782ae3 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-detect-changes-in-non-root-files.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-detect-changes-in-non-root-files.js @@ -81,10 +81,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-global-file-shape-changed.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-global-file-shape-changed.js index 4ebfc7f70bfda..564aa677136e3 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-global-file-shape-changed.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-global-file-shape-changed.js @@ -109,8 +109,6 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} /a/b/file1consumer2.ts: *new* @@ -119,6 +117,8 @@ FsWatches:: {} /a/b/modulefile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-isolatedModules.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-isolatedModules.js index 67e511662bb94..2ef0c4f0028e3 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-isolatedModules.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-isolatedModules.js @@ -88,10 +88,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-module-shape-changed.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-module-shape-changed.js index 2928009c40b54..d90b23484939d 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-module-shape-changed.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-module-shape-changed.js @@ -109,8 +109,6 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} /a/b/file1consumer2.ts: *new* @@ -119,6 +117,8 @@ FsWatches:: {} /a/b/modulefile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -156,14 +156,14 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: - {} /a/b/file1consumer2.ts: {} /a/b/globalfile3.ts: {} /a/b/modulefile2.ts: {} +/a/b/tsconfig.json: + {} /a/lib/lib.d.ts: {} diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-noEmit.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-noEmit.js index b633d8b621140..e290c4e0ac8c7 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-noEmit.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-noEmit.js @@ -97,12 +97,12 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} /a/b/file1consumer2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-outFile.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-outFile.js index 922994846271d..76e2c77cadb6a 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-outFile.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-outFile.js @@ -90,10 +90,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-removed-code.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-removed-code.js index 7d201effa5905..3cbcac03495a2 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-removed-code.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-removed-code.js @@ -74,10 +74,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/modulefile1.ts: *new* {} +/a/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /a/b: *new* @@ -164,10 +164,10 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/modulefile1.ts: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} FsWatches:: /a/b/tsconfig.json: diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-changes-in-non-open-files.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-changes-in-non-open-files.js index de259093095cc..d3b4229a6f1ba 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-changes-in-non-open-files.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-changes-in-non-open-files.js @@ -109,8 +109,6 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} /a/b/file1consumer2.ts: *new* @@ -119,6 +117,8 @@ FsWatches:: {} /a/b/modulefile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-deleted-files.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-deleted-files.js index dafbea51d5244..83b3b00ede8c6 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-deleted-files.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-deleted-files.js @@ -109,8 +109,6 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} /a/b/file1consumer2.ts: *new* @@ -119,6 +117,8 @@ FsWatches:: {} /a/b/modulefile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -190,14 +190,14 @@ Before request //// [/a/b/file1Consumer2.ts] deleted FsWatches:: -/a/b/tsconfig.json: - {} /a/b/file1consumer1.ts: {} /a/b/globalfile3.ts: {} /a/b/modulefile2.ts: {} +/a/b/tsconfig.json: + {} /a/lib/lib.d.ts: {} diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-new-files.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-new-files.js index 07f70018b977c..48228a8931bec 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-new-files.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-new-files.js @@ -109,8 +109,6 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} /a/b/file1consumer2.ts: *new* @@ -119,6 +117,8 @@ FsWatches:: {} /a/b/modulefile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -220,19 +220,19 @@ Info seq [hh:mm:ss:mss] Projects: /a/b/tsconfig.json After running Timeout callback:: count: 0 FsWatches:: -/a/b/tsconfig.json: - {} /a/b/file1consumer1.ts: {} /a/b/file1consumer2.ts: {} +/a/b/file1consumer3.ts: *new* + {} /a/b/globalfile3.ts: {} /a/b/modulefile2.ts: {} -/a/lib/lib.d.ts: +/a/b/tsconfig.json: {} -/a/b/file1consumer3.ts: *new* +/a/lib/lib.d.ts: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-reference-map-changes.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-reference-map-changes.js index db26229c186d5..a18315398325a 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-reference-map-changes.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-reference-map-changes.js @@ -109,8 +109,6 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/file1consumer1.ts: *new* {} /a/b/file1consumer2.ts: *new* @@ -119,6 +117,8 @@ FsWatches:: {} /a/b/modulefile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} @@ -156,14 +156,14 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: - {} /a/b/file1consumer2.ts: {} /a/b/globalfile3.ts: {} /a/b/modulefile2.ts: {} +/a/b/tsconfig.json: + {} /a/lib/lib.d.ts: {} diff --git a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-composite.js b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-composite.js index e1c85b8cecd2d..74fdee46e55a6 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-composite.js +++ b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-composite.js @@ -72,10 +72,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: *new* - {} /a/b.ts: *new* {} +/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /a: *new* diff --git a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-decorator-emit.js b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-decorator-emit.js index 5d8f3b327350b..0416afdf44b8a 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-decorator-emit.js +++ b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-decorator-emit.js @@ -71,10 +71,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: *new* - {} /a/b.ts: *new* {} +/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /a: *new* diff --git a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-dts-emit.js b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-dts-emit.js index 97759f679a932..3ef03028df3a5 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-dts-emit.js +++ b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-dts-emit.js @@ -70,10 +70,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: *new* - {} /a/b.ts: *new* {} +/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /a: *new* diff --git a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file.js b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file.js index 325b39fcd2d84..eda5f540ff04a 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file.js +++ b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file.js @@ -69,10 +69,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: *new* - {} /a/b.ts: *new* {} +/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /a: *new* diff --git a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-module-file.js b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-module-file.js index 0c51156f1197a..215433b9704c8 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-module-file.js +++ b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-module-file.js @@ -67,16 +67,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/runtime/a;: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} +/a/runtime/a;: *new* + {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: *new* - {} /a/b.ts: *new* {} +/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /a: *new* @@ -112,10 +112,10 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/runtime/a;: - {"pollingInterval":500} /a/lib/lib.d.ts: {"pollingInterval":500} +/a/runtime/a;: + {"pollingInterval":500} FsWatches:: /a/tsconfig.json: diff --git a/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-dts-emit.js b/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-dts-emit.js index 97e552ca11405..726da15a826d7 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-dts-emit.js +++ b/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-dts-emit.js @@ -107,13 +107,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/file2.ts: *new* {} /user/username/projects/myproject/file3.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -156,11 +156,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/file3.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-module-with-dts-emit.js b/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-module-with-dts-emit.js index fe59eb00350f4..49f6751f4e1eb 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-module-with-dts-emit.js +++ b/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-module-with-dts-emit.js @@ -114,7 +114,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/file2.ts: *new* {} @@ -122,7 +122,7 @@ FsWatches:: {} /user/username/projects/myproject/module.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -165,13 +165,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/file3.ts: {} /user/username/projects/myproject/module.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-module.js b/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-module.js index d9a4ddc4b79e1..dafe531139cef 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-module.js +++ b/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-module.js @@ -114,7 +114,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/file2.ts: *new* {} @@ -122,7 +122,7 @@ FsWatches:: {} /user/username/projects/myproject/module.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -165,13 +165,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/file3.ts: {} /user/username/projects/myproject/module.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/compileOnSave/emit-in-project.js b/tests/baselines/reference/tsserver/compileOnSave/emit-in-project.js index e789505770b51..44f9547175dd7 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/emit-in-project.js +++ b/tests/baselines/reference/tsserver/compileOnSave/emit-in-project.js @@ -107,13 +107,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/file2.ts: *new* {} /user/username/projects/myproject/file3.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -156,11 +156,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/file3.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/compileOnSave/emit-specified-file.js b/tests/baselines/reference/tsserver/compileOnSave/emit-specified-file.js index d8e9dc3e79e6b..27bebaa95adda 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/emit-specified-file.js +++ b/tests/baselines/reference/tsserver/compileOnSave/emit-specified-file.js @@ -82,10 +82,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/f2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-false.js b/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-false.js index 436240e7118a8..e9021e8dc6d59 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-false.js +++ b/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-false.js @@ -94,11 +94,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -233,14 +233,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/file2.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/test/file1.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: diff --git a/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-true.js b/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-true.js index 0a0fb2b436e1b..dd826a08d8c06 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-true.js +++ b/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-true.js @@ -94,11 +94,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -245,14 +245,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/file2.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/test/file1.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: diff --git a/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-undefined.js b/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-undefined.js index f4a809eebcd3b..1c8ba38dbeed0 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-undefined.js +++ b/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-undefined.js @@ -94,11 +94,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -231,14 +231,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/file2.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/test/file1.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: diff --git a/tests/baselines/reference/tsserver/compileOnSave/use-projectRoot-as-current-directory.js b/tests/baselines/reference/tsserver/compileOnSave/use-projectRoot-as-current-directory.js index e313f0b94d38f..8fb43792a89df 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/use-projectRoot-as-current-directory.js +++ b/tests/baselines/reference/tsserver/compileOnSave/use-projectRoot-as-current-directory.js @@ -67,10 +67,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/root/typescriptproject3/typescriptproject3/foo.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/root/typescriptproject3/typescriptproject3/foo.ts: *new* + {} Before request diff --git a/tests/baselines/reference/tsserver/completions/works-when-files-are-included-from-two-different-drives-of-windows.js b/tests/baselines/reference/tsserver/completions/works-when-files-are-included-from-two-different-drives-of-windows.js index 1e4e28bf3d287..1b747203aff63 100644 --- a/tests/baselines/reference/tsserver/completions/works-when-files-are-included-from-two-different-drives-of-windows.js +++ b/tests/baselines/reference/tsserver/completions/works-when-files-are-included-from-two-different-drives-of-windows.js @@ -130,34 +130,34 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- TI:: Creating typing installer PolledWatches:: -e:/myproject/src/tsconfig.json: *new* - {"pollingInterval":2000} e:/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} e:/myproject/src/node_modules: *new* {"pollingInterval":500} e:/myproject/src/node_modules/@types: *new* {"pollingInterval":500} +e:/myproject/src/tsconfig.json: *new* + {"pollingInterval":2000} FsWatches:: -e:/myproject/node_modules/@types/prop-types/package.json: *new* - {} -e:/myproject/node_modules/@types/react/package.json: *new* - {} c:/a/lib/lib.d.ts: *new* {} +c:/typescript/node_modules/@types/react-router-dom/package.json: *new* + {} c:/typescript/node_modules/@types/react/package.json: *new* {} -e:/myproject/node_modules/react-router-dom/package.json: *new* +e:/myproject/node_modules/@types/prop-types/package.json: *new* {} -c:/typescript/node_modules/@types/react-router-dom/package.json: *new* +e:/myproject/node_modules/@types/react/package.json: *new* + {} +e:/myproject/node_modules/react-router-dom/package.json: *new* {} FsWatchesRecursive:: -e:/myproject/node_modules: *new* - {} c:/typescript/node_modules: *new* {} +e:/myproject/node_modules: *new* + {} e:/myproject/node_modules/@types: *new* {} @@ -219,38 +219,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -e:/myproject/src/tsconfig.json: - {"pollingInterval":2000} +e:/myproject/src/bower_components: *new* + {"pollingInterval":500} e:/myproject/src/jsconfig.json: {"pollingInterval":2000} e:/myproject/src/node_modules: {"pollingInterval":500} e:/myproject/src/node_modules/@types: {"pollingInterval":500} -e:/myproject/src/bower_components: *new* - {"pollingInterval":500} +e:/myproject/src/tsconfig.json: + {"pollingInterval":2000} FsWatches:: -e:/myproject/node_modules/@types/prop-types/package.json: - {} -e:/myproject/node_modules/@types/react/package.json: - {} c:/a/lib/lib.d.ts: {} +c:/typescript/node_modules/@types/react-router-dom/package.json: + {} c:/typescript/node_modules/@types/react/package.json: {} -e:/myproject/node_modules/react-router-dom/package.json: +e:/myproject/node_modules/@types/prop-types/package.json: {} -c:/typescript/node_modules/@types/react-router-dom/package.json: +e:/myproject/node_modules/@types/react/package.json: + {} +e:/myproject/node_modules/react-router-dom/package.json: {} e:/myproject/package.json: *new* {} FsWatchesRecursive:: -e:/myproject/node_modules: - {} c:/typescript/node_modules: {} +e:/myproject/node_modules: + {} e:/myproject/node_modules/@types: {} diff --git a/tests/baselines/reference/tsserver/completions/works.js b/tests/baselines/reference/tsserver/completions/works.js index 67deda69c714c..cfe57266f707d 100644 --- a/tests/baselines/reference/tsserver/completions/works.js +++ b/tests/baselines/reference/tsserver/completions/works.js @@ -69,10 +69,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /b.ts: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/completionsIncomplete/ambient-module-specifier-resolutions-do-not-count-against-the-resolution-limit.js b/tests/baselines/reference/tsserver/completionsIncomplete/ambient-module-specifier-resolutions-do-not-count-against-the-resolution-limit.js index 19003319559b4..ee4313fa7ad0b 100644 --- a/tests/baselines/reference/tsserver/completionsIncomplete/ambient-module-specifier-resolutions-do-not-count-against-the-resolution-limit.js +++ b/tests/baselines/reference/tsserver/completionsIncomplete/ambient-module-specifier-resolutions-do-not-count-against-the-resolution-limit.js @@ -2093,8 +2093,6 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /lib/a_0.ts: *new* {} /lib/a_1.ts: *new* @@ -2495,6 +2493,8 @@ FsWatches:: {} /lib/ambient_99.ts: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/completionsIncomplete/resolves-more-when-available-from-module-specifier-cache-(1).js b/tests/baselines/reference/tsserver/completionsIncomplete/resolves-more-when-available-from-module-specifier-cache-(1).js index 479520477666f..2eabb6a7974dc 100644 --- a/tests/baselines/reference/tsserver/completionsIncomplete/resolves-more-when-available-from-module-specifier-cache-(1).js +++ b/tests/baselines/reference/tsserver/completionsIncomplete/resolves-more-when-available-from-module-specifier-cache-(1).js @@ -2943,8 +2943,6 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /lib/a_0.ts: *new* {} /lib/a_1.ts: *new* @@ -3045,6 +3043,8 @@ FsWatches:: {} /lib/a_9.ts: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/completionsIncomplete/resolves-more-when-available-from-module-specifier-cache-(2).js b/tests/baselines/reference/tsserver/completionsIncomplete/resolves-more-when-available-from-module-specifier-cache-(2).js index 9b0ed167d7d0a..450f86cfa78a2 100644 --- a/tests/baselines/reference/tsserver/completionsIncomplete/resolves-more-when-available-from-module-specifier-cache-(2).js +++ b/tests/baselines/reference/tsserver/completionsIncomplete/resolves-more-when-available-from-module-specifier-cache-(2).js @@ -1293,8 +1293,6 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /lib/a_0.ts: *new* {} /lib/a_1.ts: *new* @@ -1595,6 +1593,8 @@ FsWatches:: {} /lib/a_99.ts: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/completionsIncomplete/works-for-transient-symbols-between-requests.js b/tests/baselines/reference/tsserver/completionsIncomplete/works-for-transient-symbols-between-requests.js index 7acdd355364bf..5f08ffbb6b5ac 100644 --- a/tests/baselines/reference/tsserver/completionsIncomplete/works-for-transient-symbols-between-requests.js +++ b/tests/baselines/reference/tsserver/completionsIncomplete/works-for-transient-symbols-between-requests.js @@ -904,8 +904,6 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /lib/a_0.ts: *new* {} /lib/a_1.ts: *new* @@ -1108,6 +1106,8 @@ FsWatches:: {} /lib/foo/constants.d.ts: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/completionsIncomplete/works-with-PackageJsonAutoImportProvider.js b/tests/baselines/reference/tsserver/completionsIncomplete/works-with-PackageJsonAutoImportProvider.js index 71f0838ab844c..066133c89227a 100644 --- a/tests/baselines/reference/tsserver/completionsIncomplete/works-with-PackageJsonAutoImportProvider.js +++ b/tests/baselines/reference/tsserver/completionsIncomplete/works-with-PackageJsonAutoImportProvider.js @@ -1271,8 +1271,6 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /lib/a_0.ts: *new* {} /lib/a_1.ts: *new* @@ -1475,6 +1473,8 @@ FsWatches:: {} /package.json: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/completionsIncomplete/works.js b/tests/baselines/reference/tsserver/completionsIncomplete/works.js index ce136cfe2d008..dbfafa33b5475 100644 --- a/tests/baselines/reference/tsserver/completionsIncomplete/works.js +++ b/tests/baselines/reference/tsserver/completionsIncomplete/works.js @@ -2093,8 +2093,6 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /lib/a_0.ts: *new* {} /lib/a_1.ts: *new* @@ -2595,6 +2593,8 @@ FsWatches:: {} /lib/a_99.ts: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* 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 f3539a91041bc..98c156f5f92a5 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 @@ -140,18 +140,18 @@ Info seq [hh:mm:ss:mss] Projects: /dev/null/inferredProject1* After running Timeout callback:: count: 0 PolledWatches:: -/a/b/projects/project/src/tsconfig.json: *new* +/a/b/projects/node_modules/@types: *new* + {"pollingInterval":500} +/a/b/projects/project/jsconfig.json: *new* {"pollingInterval":2000} +/a/b/projects/project/node_modules/@types: *new* + {"pollingInterval":500} /a/b/projects/project/src/jsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/tsconfig.json: *new* +/a/b/projects/project/src/tsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/jsconfig.json: *new* +/a/b/projects/project/tsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/node_modules/@types: *new* - {"pollingInterval":500} -/a/b/projects/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: 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 03e623e49b489..e9a1adc390845 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 @@ -142,20 +142,20 @@ Info seq [hh:mm:ss:mss] Projects: /dev/null/inferredProject1* After running Timeout callback:: count: 0 PolledWatches:: -/a/b/projects/project/src/tsconfig.json: *new* - {"pollingInterval":2000} -/a/b/projects/project/src/jsconfig.json: *new* - {"pollingInterval":2000} -/a/b/projects/project/tsconfig.json: *new* - {"pollingInterval":2000} +/a/b/projects/node_modules/@types: *new* + {"pollingInterval":500} /a/b/projects/project/jsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/src/node_modules/@types: *new* - {"pollingInterval":500} /a/b/projects/project/node_modules/@types: *new* {"pollingInterval":500} -/a/b/projects/node_modules/@types: *new* +/a/b/projects/project/src/jsconfig.json: *new* + {"pollingInterval":2000} +/a/b/projects/project/src/node_modules/@types: *new* {"pollingInterval":500} +/a/b/projects/project/src/tsconfig.json: *new* + {"pollingInterval":2000} +/a/b/projects/project/tsconfig.json: *new* + {"pollingInterval":2000} FsWatches:: /a/lib/lib.d.ts: 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 8edf8dad589c9..fb0c20088558e 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 @@ -73,24 +73,24 @@ Before running Timeout callback:: count: 2 PolledWatches:: -/a/b/projects/project/src/tsconfig.json: *new* - {"pollingInterval":2000} -/a/b/projects/project/src/jsconfig.json: *new* - {"pollingInterval":2000} +/a/b/projects/node_modules/@types: *new* + {"pollingInterval":500} /a/b/projects/project/jsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/src/node_modules/@types: *new* - {"pollingInterval":500} /a/b/projects/project/node_modules/@types: *new* {"pollingInterval":500} -/a/b/projects/node_modules/@types: *new* +/a/b/projects/project/src/jsconfig.json: *new* + {"pollingInterval":2000} +/a/b/projects/project/src/node_modules/@types: *new* {"pollingInterval":500} +/a/b/projects/project/src/tsconfig.json: *new* + {"pollingInterval":2000} FsWatches:: -/a/lib/lib.d.ts: *new* - {} /a/b/projects/project/tsconfig.json: *new* {} +/a/lib/lib.d.ts: *new* + {} Info seq [hh:mm:ss:mss] Running: /a/b/projects/project/tsconfig.json Info seq [hh:mm:ss:mss] Loading configured project /a/b/projects/project/tsconfig.json @@ -161,26 +161,26 @@ Info seq [hh:mm:ss:mss] Projects: /a/b/projects/project/tsconfig.json After running Timeout callback:: count: 0 PolledWatches:: -/a/b/projects/project/src/node_modules/@types: +/a/b/projects/node_modules/@types: {"pollingInterval":500} /a/b/projects/project/node_modules/@types: {"pollingInterval":500} -/a/b/projects/node_modules/@types: +/a/b/projects/project/src/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: -/a/b/projects/project/src/tsconfig.json: +/a/b/projects/project/jsconfig.json: {"pollingInterval":2000} /a/b/projects/project/src/jsconfig.json: {"pollingInterval":2000} -/a/b/projects/project/jsconfig.json: +/a/b/projects/project/src/tsconfig.json: {"pollingInterval":2000} FsWatches:: -/a/lib/lib.d.ts: - {} /a/b/projects/project/tsconfig.json: {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b/projects/project: *new* @@ -216,11 +216,11 @@ Before running Timeout callback:: count: 1 //// [/a/b/projects/project/tsconfig.json] deleted PolledWatches:: -/a/b/projects/project/src/node_modules/@types: +/a/b/projects/node_modules/@types: {"pollingInterval":500} /a/b/projects/project/node_modules/@types: {"pollingInterval":500} -/a/b/projects/node_modules/@types: +/a/b/projects/project/src/node_modules/@types: {"pollingInterval":500} FsWatches:: @@ -274,20 +274,20 @@ Info seq [hh:mm:ss:mss] Projects: /dev/null/inferredProject1* After running Timeout callback:: count: 0 PolledWatches:: -/a/b/projects/project/src/node_modules/@types: +/a/b/projects/node_modules/@types: {"pollingInterval":500} +/a/b/projects/project/jsconfig.json: *new* + {"pollingInterval":2000} /a/b/projects/project/node_modules/@types: {"pollingInterval":500} -/a/b/projects/node_modules/@types: +/a/b/projects/project/src/jsconfig.json: *new* + {"pollingInterval":2000} +/a/b/projects/project/src/node_modules/@types: {"pollingInterval":500} /a/b/projects/project/src/tsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/src/jsconfig.json: *new* - {"pollingInterval":2000} /a/b/projects/project/tsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/jsconfig.json: *new* - {"pollingInterval":2000} FsWatches:: /a/lib/lib.d.ts: 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 c1b151ee76d6b..6cd36dffe6c98 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 @@ -135,20 +135,20 @@ Info seq [hh:mm:ss:mss] Projects: /dev/null/inferredProject1* After running Timeout callback:: count: 0 PolledWatches:: -/a/b/projects/project/src/tsconfig.json: *new* - {"pollingInterval":2000} -/a/b/projects/project/src/jsconfig.json: *new* - {"pollingInterval":2000} -/a/b/projects/project/tsconfig.json: *new* - {"pollingInterval":2000} +/a/b/projects/node_modules/@types: *new* + {"pollingInterval":500} /a/b/projects/project/jsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/src/node_modules/@types: *new* - {"pollingInterval":500} /a/b/projects/project/node_modules/@types: *new* {"pollingInterval":500} -/a/b/projects/node_modules/@types: *new* +/a/b/projects/project/src/jsconfig.json: *new* + {"pollingInterval":2000} +/a/b/projects/project/src/node_modules/@types: *new* {"pollingInterval":500} +/a/b/projects/project/src/tsconfig.json: *new* + {"pollingInterval":2000} +/a/b/projects/project/tsconfig.json: *new* + {"pollingInterval":2000} FsWatches:: /a/lib/lib.d.ts: @@ -175,28 +175,28 @@ Before running Timeout callback:: count: 2 PolledWatches:: -/a/b/projects/project/src/tsconfig.json: - {"pollingInterval":2000} -/a/b/projects/project/src/jsconfig.json: - {"pollingInterval":2000} +/a/b/projects/node_modules/@types: + {"pollingInterval":500} /a/b/projects/project/jsconfig.json: {"pollingInterval":2000} -/a/b/projects/project/src/node_modules/@types: - {"pollingInterval":500} /a/b/projects/project/node_modules/@types: {"pollingInterval":500} -/a/b/projects/node_modules/@types: +/a/b/projects/project/src/jsconfig.json: + {"pollingInterval":2000} +/a/b/projects/project/src/node_modules/@types: {"pollingInterval":500} +/a/b/projects/project/src/tsconfig.json: + {"pollingInterval":2000} PolledWatches *deleted*:: /a/b/projects/project/tsconfig.json: {"pollingInterval":2000} FsWatches:: -/a/lib/lib.d.ts: - {} /a/b/projects/project/tsconfig.json: *new* {} +/a/lib/lib.d.ts: + {} Info seq [hh:mm:ss:mss] Running: /a/b/projects/project/tsconfig.json Info seq [hh:mm:ss:mss] Loading configured project /a/b/projects/project/tsconfig.json @@ -267,26 +267,26 @@ Info seq [hh:mm:ss:mss] Projects: /a/b/projects/project/tsconfig.json After running Timeout callback:: count: 0 PolledWatches:: -/a/b/projects/project/src/node_modules/@types: +/a/b/projects/node_modules/@types: {"pollingInterval":500} /a/b/projects/project/node_modules/@types: {"pollingInterval":500} -/a/b/projects/node_modules/@types: +/a/b/projects/project/src/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: -/a/b/projects/project/src/tsconfig.json: +/a/b/projects/project/jsconfig.json: {"pollingInterval":2000} /a/b/projects/project/src/jsconfig.json: {"pollingInterval":2000} -/a/b/projects/project/jsconfig.json: +/a/b/projects/project/src/tsconfig.json: {"pollingInterval":2000} FsWatches:: -/a/lib/lib.d.ts: - {} /a/b/projects/project/tsconfig.json: {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b/projects/project: *new* diff --git a/tests/baselines/reference/tsserver/configuredProjects/Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update-buts-its-open-file-references-are-all-closed-when-the-update-happens.js b/tests/baselines/reference/tsserver/configuredProjects/Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update-buts-its-open-file-references-are-all-closed-when-the-update-happens.js index 8e36e4554a942..feef5972e16c1 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update-buts-its-open-file-references-are-all-closed-when-the-update-happens.js +++ b/tests/baselines/reference/tsserver/configuredProjects/Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update-buts-its-open-file-references-are-all-closed-when-the-update-happens.js @@ -141,17 +141,17 @@ configFile updated PolledWatches:: -/a/lib/lib.d.ts: *new* - {"pollingInterval":500} /a/b/src/node_modules/@types: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: *new* + {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: *new* +/a/b/file3.ts: *new* {} /a/b/src/file1.ts: *new* {} -/a/b/file3.ts: *new* +/a/b/tsconfig.json: *new* {} Configured project: /a/b/tsconfig.json hasOpenRef:: true isClosed: false @@ -271,17 +271,17 @@ Info seq [hh:mm:ss:mss] Projects: /dev/null/inferredProject2* After running Timeout callback:: count: 0 PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/src/node_modules/@types: {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/file3.ts: {} /a/b/src/file1.ts: {} -/a/b/file3.ts: +/a/b/tsconfig.json: {} FsWatchesRecursive:: 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 4d190c89d15b7..79df60ca095bc 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 @@ -151,10 +151,10 @@ Before running Timeout callback:: count: 2 PolledWatches:: -/a/lib/lib.d.ts: *new* - {"pollingInterval":500} /a/b/src/node_modules/@types: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: *new* + {"pollingInterval":500} FsWatches:: /a/b/tsconfig.json: *new* @@ -248,10 +248,10 @@ Info seq [hh:mm:ss:mss] Projects: /dev/null/inferredProject2* After running Timeout callback:: count: 0 PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/src/node_modules/@types: {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} FsWatches:: /a/b/tsconfig.json: @@ -377,13 +377,13 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/file3.ts: *new* {} /a/b/src/file1.ts: *new* {} /a/b/src/file2.ts: *new* {} -/a/b/file3.ts: *new* +/a/b/tsconfig.json: {} FsWatchesRecursive:: 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 4dd74a2e31534..810a05a5d3c52 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 @@ -117,12 +117,12 @@ Info seq [hh:mm:ss:mss] Projects: /a/b/tsconfig.json After running Timeout callback:: count: 0 FsWatches:: +/a/b/commonfile2.ts: *new* + {} /a/b/tsconfig.json: {} /a/lib/lib.d.ts: {} -/a/b/commonfile2.ts: *new* - {} FsWatchesRecursive:: /a/b: diff --git a/tests/baselines/reference/tsserver/configuredProjects/can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-in-list-of-files).js b/tests/baselines/reference/tsserver/configuredProjects/can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-in-list-of-files).js index 3652c8c4f3cfc..c8bc4fb6c6221 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-in-list-of-files).js +++ b/tests/baselines/reference/tsserver/configuredProjects/can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-in-list-of-files).js @@ -111,7 +111,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: - {} /a/b/f2.ts: *new* {} +/a/b/tsconfig.json: + {} diff --git a/tests/baselines/reference/tsserver/configuredProjects/can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-on-disk).js b/tests/baselines/reference/tsserver/configuredProjects/can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-on-disk).js index 568f91b9c93a8..58e3fd27be768 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-on-disk).js +++ b/tests/baselines/reference/tsserver/configuredProjects/can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-on-disk).js @@ -104,10 +104,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: - {} /a/b/f2.ts: *new* {} +/a/b/tsconfig.json: + {} FsWatchesRecursive:: /a/b: diff --git a/tests/baselines/reference/tsserver/configuredProjects/can-update-configured-project-when-set-of-root-files-was-not-changed.js b/tests/baselines/reference/tsserver/configuredProjects/can-update-configured-project-when-set-of-root-files-was-not-changed.js index cda7f143212f6..a3c2e210a6b02 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/can-update-configured-project-when-set-of-root-files-was-not-changed.js +++ b/tests/baselines/reference/tsserver/configuredProjects/can-update-configured-project-when-set-of-root-files-was-not-changed.js @@ -63,10 +63,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/f2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} Info seq [hh:mm:ss:mss] Running: /a/b/tsconfig.json Info seq [hh:mm:ss:mss] Reloading configured project /a/b/tsconfig.json 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 cc0887484f864..7750f2b665af2 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 @@ -79,20 +79,20 @@ export classc { method2() { return 10; } } PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} Info seq [hh:mm:ss:mss] Running: /users/username/projects/project/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Scheduled: /users/username/projects/project/tsconfig.json @@ -146,20 +146,20 @@ Info seq [hh:mm:ss:mss] Projects: /users/username/projects/project/tsconfig.j After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/file2.ts: {} -/a/lib/lib.d.ts: - {} /users/username/projects/project/file2.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatches *deleted*:: /users/username/projects/project: 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 4303993aefb13..50ce8a2797f20 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 @@ -164,11 +164,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -254,31 +254,31 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/jsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: *new* - {"pollingInterval":2000} /user/username/projects/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: *new* +/user/username/projects/myproject/src/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/myproject/src/sub/jsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/myproject/src/sub/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: *new* +/user/username/projects/myproject/src/sub/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/src/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/src/bar.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: 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 3f8d4f6545a3a..8d1b3b4163fbe 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 @@ -164,11 +164,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: 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 9b8419cb4bb9d..b2d318dbe3346 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 @@ -164,11 +164,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -254,31 +254,31 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/jsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: *new* - {"pollingInterval":2000} /user/username/projects/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: *new* +/user/username/projects/myproject/src/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/myproject/src/sub/jsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/myproject/src/sub/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: *new* +/user/username/projects/myproject/src/sub/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/src/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/src/bar.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: 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 8005a2463b354..e13df3f3243f3 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 @@ -164,11 +164,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: 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 d43d3a02b87fb..42a514757ce92 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 @@ -164,11 +164,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -248,31 +248,31 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/jsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: *new* - {"pollingInterval":2000} /user/username/projects/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: *new* +/user/username/projects/myproject/src/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/myproject/src/sub/jsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/myproject/src/sub/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: *new* +/user/username/projects/myproject/src/sub/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/src/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/src/bar.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: 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 a6f2812b47a9f..50b181fc95a8e 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 @@ -164,11 +164,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -248,31 +248,31 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/jsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: *new* - {"pollingInterval":2000} /user/username/projects/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: *new* +/user/username/projects/myproject/src/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/myproject/src/sub/jsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/myproject/src/sub/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: *new* +/user/username/projects/myproject/src/sub/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/src/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/src/bar.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: @@ -355,31 +355,31 @@ After running Timeout callback:: count: 2 PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/src/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/src/sub/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/src/sub/tsconfig.json: +/user/username/projects/myproject/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: +/user/username/projects/myproject/src/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: +/user/username/projects/myproject/src/sub/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: +/user/username/projects/myproject/src/sub/tsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: +/user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/src/bar.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: 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 c4b39b80d3e54..2bbe8fc392138 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 @@ -164,11 +164,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -248,31 +248,31 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/jsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: *new* - {"pollingInterval":2000} /user/username/projects/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: *new* +/user/username/projects/myproject/src/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/myproject/src/sub/jsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/myproject/src/sub/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: *new* +/user/username/projects/myproject/src/sub/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/src/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/src/bar.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: 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 845111aae65fe..7560d61cf3665 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 @@ -164,11 +164,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -248,31 +248,31 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/jsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: *new* - {"pollingInterval":2000} /user/username/projects/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: *new* +/user/username/projects/myproject/src/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/myproject/src/sub/jsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/myproject/src/sub/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: *new* +/user/username/projects/myproject/src/sub/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/src/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/src/bar.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: @@ -406,31 +406,31 @@ After running Timeout callback:: count: 2 PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/src/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/src/sub/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/src/sub/tsconfig.json: +/user/username/projects/myproject/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: +/user/username/projects/myproject/src/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: +/user/username/projects/myproject/src/sub/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: +/user/username/projects/myproject/src/sub/tsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: +/user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/src/bar.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/configuredProjects/handle-recreated-files-correctly.js b/tests/baselines/reference/tsserver/configuredProjects/handle-recreated-files-correctly.js index 23a16a88c18c9..ee570d1d9a79a 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/handle-recreated-files-correctly.js +++ b/tests/baselines/reference/tsserver/configuredProjects/handle-recreated-files-correctly.js @@ -157,10 +157,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: - {} /a/b/commonfile2.ts: *new* {} +/a/b/tsconfig.json: + {} FsWatchesRecursive:: /a/b: diff --git a/tests/baselines/reference/tsserver/configuredProjects/open-file-become-a-part-of-configured-project-if-it-is-referenced-from-root-file.js b/tests/baselines/reference/tsserver/configuredProjects/open-file-become-a-part-of-configured-project-if-it-is-referenced-from-root-file.js index ed76e966f6b06..14902a522c581 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/open-file-become-a-part-of-configured-project-if-it-is-referenced-from-root-file.js +++ b/tests/baselines/reference/tsserver/configuredProjects/open-file-become-a-part-of-configured-project-if-it-is-referenced-from-root-file.js @@ -104,31 +104,31 @@ Before running Timeout callback:: count: 2 PolledWatches:: -/user/username/projects/myproject/a/b/tsconfig.json: *new* - {"pollingInterval":2000} +/a/lib/lib.d.ts: *new* + {"pollingInterval":500} /user/username/projects/myproject/a/b/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/a/tsconfig.json: *new* +/user/username/projects/myproject/a/b/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/myproject/a/b/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/a/c/jsconfig.json: *new* {"pollingInterval":2000} +/user/username/projects/myproject/a/c/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/a/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: *new* +/user/username/projects/myproject/a/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/myproject/a/tsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} -/a/lib/lib.d.ts: *new* - {"pollingInterval":500} -/user/username/projects/myproject/a/b/node_modules/@types: *new* - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: *new* - {"pollingInterval":500} -/user/username/projects/myproject/a/c/jsconfig.json: *new* +/user/username/projects/myproject/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/a/c/node_modules/@types: *new* +/user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -242,36 +242,36 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/b/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/a/c/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/a/c/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/a/b/tsconfig.json: - {"pollingInterval":2000} /user/username/projects/myproject/a/b/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/b/tsconfig.json: + {"pollingInterval":2000} +/user/username/projects/myproject/a/c/jsconfig.json: {"pollingInterval":2000} /user/username/projects/myproject/a/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/a/tsconfig.json: {"pollingInterval":2000} /user/username/projects/myproject/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/a/c/jsconfig.json: +/user/username/projects/myproject/tsconfig.json: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/a/c/tsconfig.json: - {} /user/username/projects/myproject/a/c/f2.ts: *new* {} +/user/username/projects/myproject/a/c/tsconfig.json: + {} Inferred project: /dev/null/inferredProject1* isOrphan:: true isClosed: false Inferred project: /dev/null/inferredProject2* isOrphan:: true isClosed: false \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/configuredProjects/should-be-tolerated-without-crashing-the-server-when-reading-tsconfig-file-fails.js b/tests/baselines/reference/tsserver/configuredProjects/should-be-tolerated-without-crashing-the-server-when-reading-tsconfig-file-fails.js index 6b978833f47ff..0ae9090784d43 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/should-be-tolerated-without-crashing-the-server-when-reading-tsconfig-file-fails.js +++ b/tests/baselines/reference/tsserver/configuredProjects/should-be-tolerated-without-crashing-the-server-when-reading-tsconfig-file-fails.js @@ -160,10 +160,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject: *new* diff --git a/tests/baselines/reference/tsserver/configuredProjects/should-be-tolerated-without-crashing-the-server.js b/tests/baselines/reference/tsserver/configuredProjects/should-be-tolerated-without-crashing-the-server.js index e7acb0b72eb29..5d75e4f4a6593 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/should-be-tolerated-without-crashing-the-server.js +++ b/tests/baselines/reference/tsserver/configuredProjects/should-be-tolerated-without-crashing-the-server.js @@ -61,10 +61,10 @@ Before running Timeout callback:: count: 0 PolledWatches:: /a/b/app: *new* {"pollingInterval":500} -/a/b/test: *new* - {"pollingInterval":500} /a/b/something: *new* {"pollingInterval":500} +/a/b/test: *new* + {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} diff --git a/tests/baselines/reference/tsserver/configuredProjects/should-properly-handle-module-resolution-changes-in-config-file.js b/tests/baselines/reference/tsserver/configuredProjects/should-properly-handle-module-resolution-changes-in-config-file.js index 5d39a2c6a8084..e1b826670f293 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/should-properly-handle-module-resolution-changes-in-config-file.js +++ b/tests/baselines/reference/tsserver/configuredProjects/should-properly-handle-module-resolution-changes-in-config-file.js @@ -213,10 +213,10 @@ Info seq [hh:mm:ss:mss] Projects: /a/b/tsconfig.json After running Timeout callback:: count: 0 PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/node_modules/node_modules/@types: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} FsWatches:: /a/b/tsconfig.json: 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 9adf626f805f0..8fe305d0a5739 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 @@ -120,20 +120,20 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/b/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/extended/alpha.tsconfig.json: *new* - {} /user/username/projects/myproject/b/tsconfig.json: *new* {} +/user/username/projects/myproject/extended/alpha.tsconfig.json: *new* + {} /user/username/projects/myproject/extended/bravo.tsconfig.json: *new* {} @@ -332,20 +332,20 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/b/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/extended/alpha.tsconfig.json: - {} /user/username/projects/myproject/b/tsconfig.json: {} +/user/username/projects/myproject/extended/alpha.tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/extended/bravo.tsconfig.json: diff --git a/tests/baselines/reference/tsserver/configuredProjects/when-default-configured-project-does-not-contain-the-file.js b/tests/baselines/reference/tsserver/configuredProjects/when-default-configured-project-does-not-contain-the-file.js index ab9b9624e6617..8a6e3d3c7decd 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/when-default-configured-project-does-not-contain-the-file.js +++ b/tests/baselines/reference/tsserver/configuredProjects/when-default-configured-project-does-not-contain-the-file.js @@ -119,12 +119,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: *new* + {} /user/username/projects/myproject/bar/tsconfig.json: *new* {} /user/username/projects/myproject/foo/lib/index.d.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} FsWatchesRecursive:: /user/username/projects/myproject/bar: *new* @@ -204,20 +204,20 @@ After request PolledWatches:: /user/username/projects/myproject/bar/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/foobar/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/foobar/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: + {} /user/username/projects/myproject/bar/tsconfig.json: {} /user/username/projects/myproject/foo/lib/index.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/foobar/tsconfig.json: *new* {} @@ -302,26 +302,26 @@ After request PolledWatches:: /user/username/projects/myproject/bar/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/foo/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/foobar/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/foo/node_modules/@types: *new* +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: + {} /user/username/projects/myproject/bar/tsconfig.json: {} /user/username/projects/myproject/foo/lib/index.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/foo/tsconfig.json: *new* {} /user/username/projects/myproject/foobar/tsconfig.json: {} -/user/username/projects/myproject/foo/tsconfig.json: *new* - {} FsWatchesRecursive:: /user/username/projects/myproject/bar: @@ -375,24 +375,24 @@ After request PolledWatches:: /user/username/projects/myproject/bar/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/foo/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/foobar/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/foo/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/bar/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/foobar/tsconfig.json: +/user/username/projects/myproject/bar/tsconfig.json: {} /user/username/projects/myproject/foo/tsconfig.json: {} +/user/username/projects/myproject/foobar/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/foo/lib/index.d.ts: 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 92d6ccc867bbc..224160ea1c381 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 @@ -183,23 +183,23 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/node_modules: *new* - {"pollingInterval":500} -/user/username/projects/node_modules: *new* - {"pollingInterval":500} /user/username/projects/myproject/foo/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/node_modules: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/foo/tsconfig.json: *new* +/a/lib/lib.es2017.d.ts: *new* {} /user/username/projects/myproject/bar/index.ts: *new* {} -/a/lib/lib.es2017.d.ts: *new* +/user/username/projects/myproject/foo/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -360,29 +360,29 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/bar/node_modules: *new* {"pollingInterval":500} -/user/username/projects/node_modules: +/user/username/projects/myproject/bar/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/foo/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/bar/node_modules: *new* +/user/username/projects/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/bar/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/foo/tsconfig.json: +/a/lib/lib.dom.d.ts: *new* {} /a/lib/lib.es2017.d.ts: {} /user/username/projects/myproject/bar/tsconfig.json: *new* {} -/a/lib/lib.dom.d.ts: *new* +/user/username/projects/myproject/foo/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/does-not-jump-to-source-if-inlined-sources.js b/tests/baselines/reference/tsserver/declarationFileMaps/does-not-jump-to-source-if-inlined-sources.js index 6aed6a2b53613..fae729d20ec2e 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/does-not-jump-to-source-if-inlined-sources.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/does-not-jump-to-source-if-inlined-sources.js @@ -149,10 +149,10 @@ PolledWatches:: FsWatches:: /a/bin/a.d.ts: {} -/b/bin/b.d.ts: - {} /a/bin/a.d.ts.map: *new* {} +/b/bin/b.d.ts: + {} Before request @@ -215,14 +215,14 @@ PolledWatches:: FsWatches:: /a/bin/a.d.ts: {} -/b/bin/b.d.ts: - {} /a/bin/a.d.ts.map: {} -/b/bin/b.d.ts.map: *new* - {} /b/b.ts: *new* {} +/b/bin/b.d.ts: + {} +/b/bin/b.d.ts.map: *new* + {} Before request @@ -254,14 +254,14 @@ PolledWatches:: FsWatches:: /a/bin/a.d.ts: {} -/b/bin/b.d.ts: - {} /a/bin/a.d.ts.map: {} -/b/bin/b.d.ts.map: - {} /b/b.ts: {} +/b/bin/b.d.ts: + {} +/b/bin/b.d.ts.map: + {} /user/user.ts: *new* {} @@ -333,13 +333,13 @@ PolledWatches:: FsWatches *deleted*:: /a/bin/a.d.ts: {} -/b/bin/b.d.ts: - {} /a/bin/a.d.ts.map: {} -/b/bin/b.d.ts.map: - {} /b/b.ts: {} +/b/bin/b.d.ts: + {} +/b/bin/b.d.ts.map: + {} /user/user.ts: {} diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-starting-at-definition.js b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-starting-at-definition.js index 0302f1ba9e2a5..9eb57a3df0c08 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-starting-at-definition.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-starting-at-definition.js @@ -151,10 +151,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -240,10 +240,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /b: *new* @@ -297,10 +297,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} /b/b.ts: *new* {} +/b/tsconfig.json: + {} FsWatchesRecursive:: /b: @@ -477,10 +477,10 @@ PolledWatches:: FsWatches:: /a/bin/a.d.ts: {} -/b/bin/b.d.ts: - {} /a/tsconfig.json: *new* {} +/b/bin/b.d.ts: + {} FsWatchesRecursive:: /a: *new* @@ -562,11 +562,11 @@ PolledWatches:: FsWatches:: /a/bin/a.d.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts.map: *new* {} /a/tsconfig.json: {} -/a/bin/a.d.ts.map: *new* +/b/bin/b.d.ts: {} FsWatchesRecursive:: @@ -609,11 +609,11 @@ PolledWatches:: FsWatches:: /a/bin/a.d.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts.map: {} /a/tsconfig.json: {} -/a/bin/a.d.ts.map: +/b/bin/b.d.ts: {} /user/user.ts: *new* {} @@ -692,10 +692,10 @@ PolledWatches:: FsWatches:: /a/bin/a.d.ts: {} -/a/tsconfig.json: - {} /a/bin/a.d.ts.map: {} +/a/tsconfig.json: + {} FsWatches *deleted*:: /b/bin/b.d.ts: diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-target-does-not-exist.js b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-target-does-not-exist.js index b74d4dc2eb094..a416a46653bbb 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-target-does-not-exist.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-target-does-not-exist.js @@ -151,10 +151,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -240,10 +240,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /b: *new* @@ -297,10 +297,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} /b/b.ts: *new* {} +/b/tsconfig.json: + {} FsWatchesRecursive:: /b: diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences.js b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences.js index 10677d4d69a18..75b7c1a795fd8 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences.js @@ -151,10 +151,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -240,10 +240,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /b: *new* @@ -297,10 +297,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} /b/b.ts: *new* {} +/b/tsconfig.json: + {} FsWatchesRecursive:: /b: @@ -509,16 +509,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: *new* {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: *new* {} -/a/a.ts: *new* - {} /a/tsconfig.json: *new* {} +/b/bin/b.d.ts: + {} FsWatchesRecursive:: /a: *new* @@ -556,16 +556,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: - {} /a/tsconfig.json: {} +/b/bin/b.d.ts: + {} /user/user.ts: *new* {} @@ -652,16 +652,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches *deleted*:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: - {} /a/tsconfig.json: {} +/b/bin/b.d.ts: + {} /user/user.ts: {} diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull-definition-is-in-mapped-file.js b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull-definition-is-in-mapped-file.js index 88627607bada4..931cb5c474d6f 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull-definition-is-in-mapped-file.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull-definition-is-in-mapped-file.js @@ -128,10 +128,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -205,10 +205,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} /b/tsconfig.json: *new* {} diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull.js b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull.js index 01df078de8ecd..9bc84bea78f5c 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull.js @@ -151,10 +151,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -240,10 +240,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /b: *new* @@ -297,10 +297,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} /b/b.ts: *new* {} +/b/tsconfig.json: + {} FsWatchesRecursive:: /b: @@ -543,16 +543,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: *new* {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: *new* {} -/a/a.ts: *new* - {} /a/tsconfig.json: *new* {} +/b/bin/b.d.ts: + {} FsWatchesRecursive:: /a: *new* @@ -590,16 +590,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: - {} /a/tsconfig.json: {} +/b/bin/b.d.ts: + {} /user/user.ts: *new* {} @@ -686,16 +686,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches *deleted*:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: - {} /a/tsconfig.json: {} +/b/bin/b.d.ts: + {} /user/user.ts: {} diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan-with-file-navigation.js b/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan-with-file-navigation.js index 708ef05b93475..4eea97387b0d8 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan-with-file-navigation.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan-with-file-navigation.js @@ -154,10 +154,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -243,10 +243,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /b: *new* @@ -300,10 +300,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} /b/b.ts: *new* {} +/b/tsconfig.json: + {} FsWatchesRecursive:: /b: @@ -421,22 +421,22 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} -/user/tsconfig.json: *new* +/a/a.ts: *new* {} /a/tsconfig.json: *new* {} -/a/a.ts: *new* +/b/tsconfig.json: + {} +/user/tsconfig.json: *new* {} FsWatchesRecursive:: +/a: *new* + {} /b: {} /user: *new* {} -/a: *new* - {} Before request @@ -522,24 +522,24 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} -/user/tsconfig.json: +/a/a.ts: {} /a/tsconfig.json: {} -/a/a.ts: +/b/tsconfig.json: + {} +/user/tsconfig.json: {} /user/user.ts: *new* {} FsWatchesRecursive:: +/a: + {} /b: {} /user: {} -/a: - {} Before request @@ -596,12 +596,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/a/tsconfig.json: + {} /b/tsconfig.json: {} /user/tsconfig.json: {} -/a/tsconfig.json: - {} /user/user.ts: {} @@ -610,12 +610,12 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: +/a: + {} /b: {} /user: {} -/a: - {} Before request @@ -653,24 +653,24 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/a/a.ts: *new* + {} +/a/tsconfig.json: + {} /b/tsconfig.json: {} /user/tsconfig.json: {} -/a/tsconfig.json: - {} /user/user.ts: {} -/a/a.ts: *new* - {} FsWatchesRecursive:: +/a: + {} /b: {} /user: {} -/a: - {} Before request @@ -762,21 +762,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches *deleted*:: +/a/a.ts: + {} +/a/tsconfig.json: + {} /b/tsconfig.json: {} /user/tsconfig.json: {} -/a/tsconfig.json: - {} /user/user.ts: {} -/a/a.ts: - {} FsWatchesRecursive *deleted*:: +/a: + {} /b: {} /user: {} -/a: - {} diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan.js b/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan.js index 43b7684b8722b..7134dce0bfa87 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan.js @@ -151,10 +151,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -240,10 +240,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /b: *new* @@ -297,10 +297,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} /b/b.ts: *new* {} +/b/tsconfig.json: + {} FsWatchesRecursive:: /b: @@ -467,13 +467,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: *new* {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: *new* {} -/a/a.ts: *new* +/b/bin/b.d.ts: {} Before request @@ -504,13 +504,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: +/b/bin/b.d.ts: {} /user/user.ts: *new* {} @@ -580,13 +580,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches *deleted*:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: +/b/bin/b.d.ts: {} /user/user.ts: {} diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename.js b/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename.js index 03f91d7cb9309..834abdacb39df 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename.js @@ -151,10 +151,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -240,10 +240,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /b: *new* @@ -297,10 +297,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} /b/b.ts: *new* {} +/b/tsconfig.json: + {} FsWatchesRecursive:: /b: @@ -452,13 +452,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: *new* {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: *new* {} -/a/a.ts: *new* +/b/bin/b.d.ts: {} /b/bin/b.d.ts.map: *new* {} @@ -491,13 +491,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: +/b/bin/b.d.ts: {} /b/bin/b.d.ts.map: {} @@ -570,13 +570,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches *deleted*:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: +/b/bin/b.d.ts: {} /b/bin/b.d.ts.map: {} diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition-target-does-not-exist.js b/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition-target-does-not-exist.js index 837cae00c9e8c..34ded2f980cd6 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition-target-does-not-exist.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition-target-does-not-exist.js @@ -151,10 +151,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -240,10 +240,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /b: *new* @@ -297,10 +297,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} /b/b.ts: *new* {} +/b/tsconfig.json: + {} FsWatchesRecursive:: /b: diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition.js b/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition.js index f4ef7c192671b..b2b81c51370ea 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition.js @@ -151,10 +151,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -240,10 +240,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /b: *new* @@ -297,10 +297,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} /b/b.ts: *new* {} +/b/tsconfig.json: + {} FsWatchesRecursive:: /b: @@ -455,13 +455,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: *new* {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: *new* {} -/a/a.ts: *new* +/b/bin/b.d.ts: {} Before request @@ -492,13 +492,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: +/b/bin/b.d.ts: {} /user/user.ts: *new* {} @@ -568,13 +568,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches *deleted*:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: +/b/bin/b.d.ts: {} /user/user.ts: {} diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/goToImplementation.js b/tests/baselines/reference/tsserver/declarationFileMaps/goToImplementation.js index 4b02c0c6e4911..dfd76af33176b 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/goToImplementation.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/goToImplementation.js @@ -151,10 +151,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -240,10 +240,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /b: *new* @@ -297,10 +297,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} /b/b.ts: *new* {} +/b/tsconfig.json: + {} FsWatchesRecursive:: /b: @@ -455,13 +455,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: *new* {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: *new* {} -/a/a.ts: *new* +/b/bin/b.d.ts: {} Before request @@ -492,13 +492,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: +/b/bin/b.d.ts: {} /user/user.ts: *new* {} @@ -568,13 +568,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches *deleted*:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: +/b/bin/b.d.ts: {} /user/user.ts: {} diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/goToType.js b/tests/baselines/reference/tsserver/declarationFileMaps/goToType.js index d37e06b6ee065..56fc3f72ff18e 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/goToType.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/goToType.js @@ -151,10 +151,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -240,10 +240,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /b: *new* @@ -297,10 +297,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} /b/b.ts: *new* {} +/b/tsconfig.json: + {} FsWatchesRecursive:: /b: @@ -455,13 +455,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: *new* {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: *new* {} -/a/a.ts: *new* +/b/bin/b.d.ts: {} Before request @@ -492,13 +492,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: +/b/bin/b.d.ts: {} /user/user.ts: *new* {} @@ -568,13 +568,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches *deleted*:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: +/b/bin/b.d.ts: {} /user/user.ts: {} diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/navigateTo.js b/tests/baselines/reference/tsserver/declarationFileMaps/navigateTo.js index 56b93efe6a77e..d2ed909955d77 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/navigateTo.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/navigateTo.js @@ -151,10 +151,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -240,10 +240,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /b: *new* @@ -297,10 +297,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} /b/b.ts: *new* {} +/b/tsconfig.json: + {} FsWatchesRecursive:: /b: @@ -468,13 +468,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: *new* {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: *new* {} -/a/a.ts: *new* +/b/bin/b.d.ts: {} /b/bin/b.d.ts.map: *new* {} @@ -507,13 +507,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: +/b/bin/b.d.ts: {} /b/bin/b.d.ts.map: {} @@ -586,13 +586,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches *deleted*:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: +/b/bin/b.d.ts: {} /b/bin/b.d.ts.map: {} diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-file-is-not-specified-but-project-is.js b/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-file-is-not-specified-but-project-is.js index b26a710f1d0a3..4891b4636a8f3 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-file-is-not-specified-but-project-is.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-file-is-not-specified-but-project-is.js @@ -154,10 +154,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -243,10 +243,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /b: *new* @@ -300,10 +300,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} /b/b.ts: *new* {} +/b/tsconfig.json: + {} FsWatchesRecursive:: /b: @@ -400,24 +400,24 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/a/a.ts: *new* {} -/b/b.ts: +/a/tsconfig.json: *new* {} -/user/tsconfig.json: *new* +/b/b.ts: {} -/a/tsconfig.json: *new* +/b/tsconfig.json: {} -/a/a.ts: *new* +/user/tsconfig.json: *new* {} FsWatchesRecursive:: +/a: *new* + {} /b: {} /user: *new* {} -/a: *new* - {} Before request diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-neither-file-not-project-is-specified.js b/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-neither-file-not-project-is-specified.js index f4b0323239c49..604d31e4b2d4e 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-neither-file-not-project-is-specified.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-neither-file-not-project-is-specified.js @@ -154,10 +154,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -243,10 +243,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /b: *new* @@ -300,10 +300,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} /b/b.ts: *new* {} +/b/tsconfig.json: + {} FsWatchesRecursive:: /b: @@ -400,24 +400,24 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/a/a.ts: *new* {} -/b/b.ts: +/a/tsconfig.json: *new* {} -/user/tsconfig.json: *new* +/b/b.ts: {} -/a/tsconfig.json: *new* +/b/tsconfig.json: {} -/a/a.ts: *new* +/user/tsconfig.json: *new* {} FsWatchesRecursive:: +/a: *new* + {} /b: {} /user: *new* {} -/a: *new* - {} Before request diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-starting-at-definition.js b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-starting-at-definition.js index 84bb0f0a1a570..2ed9018f152f2 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-starting-at-definition.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-starting-at-definition.js @@ -151,10 +151,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -240,10 +240,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /b: *new* @@ -297,10 +297,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} /b/b.ts: *new* {} +/b/tsconfig.json: + {} FsWatchesRecursive:: /b: @@ -477,10 +477,10 @@ PolledWatches:: FsWatches:: /a/bin/a.d.ts: {} -/b/bin/b.d.ts: - {} /a/tsconfig.json: *new* {} +/b/bin/b.d.ts: + {} FsWatchesRecursive:: /a: *new* @@ -574,11 +574,11 @@ PolledWatches:: FsWatches:: /a/bin/a.d.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts.map: *new* {} /a/tsconfig.json: {} -/a/bin/a.d.ts.map: *new* +/b/bin/b.d.ts: {} FsWatchesRecursive:: @@ -621,11 +621,11 @@ PolledWatches:: FsWatches:: /a/bin/a.d.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts.map: {} /a/tsconfig.json: {} -/a/bin/a.d.ts.map: +/b/bin/b.d.ts: {} /user/user.ts: *new* {} @@ -704,10 +704,10 @@ PolledWatches:: FsWatches:: /a/bin/a.d.ts: {} -/a/tsconfig.json: - {} /a/bin/a.d.ts.map: {} +/a/tsconfig.json: + {} FsWatches *deleted*:: /b/bin/b.d.ts: diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-target-does-not-exist.js b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-target-does-not-exist.js index 91098ae031254..60ddac7a7cfe7 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-target-does-not-exist.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-target-does-not-exist.js @@ -151,10 +151,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -240,10 +240,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /b: *new* @@ -297,10 +297,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} /b/b.ts: *new* {} +/b/tsconfig.json: + {} FsWatchesRecursive:: /b: diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations.js b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations.js index 4300ff9c76659..72089e1e0ec88 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations.js @@ -151,10 +151,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -240,10 +240,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /b: *new* @@ -297,10 +297,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} /b/b.ts: *new* {} +/b/tsconfig.json: + {} FsWatchesRecursive:: /b: @@ -523,16 +523,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: *new* {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: *new* {} -/a/a.ts: *new* - {} /a/tsconfig.json: *new* {} +/b/bin/b.d.ts: + {} FsWatchesRecursive:: /a: *new* @@ -570,16 +570,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: - {} /a/tsconfig.json: {} +/b/bin/b.d.ts: + {} /user/user.ts: *new* {} @@ -666,16 +666,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches *deleted*:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: - {} /a/tsconfig.json: {} +/b/bin/b.d.ts: + {} /user/user.ts: {} diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocationsFull.js b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocationsFull.js index 6b5808880da46..4dbdee5335cee 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocationsFull.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocationsFull.js @@ -151,10 +151,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -240,10 +240,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /b: *new* @@ -297,10 +297,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: - {} /b/b.ts: *new* {} +/b/tsconfig.json: + {} FsWatchesRecursive:: /b: @@ -484,16 +484,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: *new* {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: *new* {} -/a/a.ts: *new* - {} /a/tsconfig.json: *new* {} +/b/bin/b.d.ts: + {} FsWatchesRecursive:: /a: *new* @@ -531,16 +531,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: - {} /a/tsconfig.json: {} +/b/bin/b.d.ts: + {} /user/user.ts: *new* {} @@ -627,16 +627,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches *deleted*:: -/a/bin/a.d.ts: +/a/a.ts: {} -/b/bin/b.d.ts: +/a/bin/a.d.ts: {} /a/bin/a.d.ts.map: {} -/a/a.ts: - {} /a/tsconfig.json: {} +/b/bin/b.d.ts: + {} /user/user.ts: {} diff --git a/tests/baselines/reference/tsserver/duplicatePackages/works-with-import-fixes.js b/tests/baselines/reference/tsserver/duplicatePackages/works-with-import-fixes.js index c06949c08ffa8..05b8867db766a 100644 --- a/tests/baselines/reference/tsserver/duplicatePackages/works-with-import-fixes.js +++ b/tests/baselines/reference/tsserver/duplicatePackages/works-with-import-fixes.js @@ -96,14 +96,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} -/b/user.ts: *new* - {} /a/node_modules/foo/package.json: *new* {} /b/node_modules/foo/package.json: *new* {} +/b/user.ts: *new* + {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* @@ -147,12 +147,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /a/node_modules/foo/package.json: {} /b/node_modules/foo/package.json: {} +/tsconfig.json: + {} FsWatches *deleted*:: /b/user.ts: diff --git a/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-with-useInferredProjectPerProjectRoot.js b/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-with-useInferredProjectPerProjectRoot.js index b14612c23e8a5..3ce6f27f9649d 100644 --- a/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-with-useInferredProjectPerProjectRoot.js +++ b/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-with-useInferredProjectPerProjectRoot.js @@ -117,16 +117,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /^walkThroughSnippet:/Users/UserName: *new* {"pollingInterval":500} /user/username/projects/myproject/bower_components: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules: *new* {"pollingInterval":500} +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -218,21 +218,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/^walkThroughSnippet:: *new* {"pollingInterval":500} /^walkThroughSnippet:/Users/UserName: {"pollingInterval":500} +/bower_components: *new* + {"pollingInterval":500} +/node_modules: *new* + {"pollingInterval":500} /user/username/projects/myproject/bower_components: {"pollingInterval":500} /user/username/projects/myproject/node_modules: {"pollingInterval":500} -/^walkThroughSnippet:: *new* - {"pollingInterval":500} -/bower_components: *new* +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/node_modules: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: diff --git a/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-js-file-is-included-by-module-resolution.js b/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-js-file-is-included-by-module-resolution.js index cd13c23fb72ec..336b68d13ce4f 100644 --- a/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-js-file-is-included-by-module-resolution.js +++ b/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-js-file-is-included-by-module-resolution.js @@ -91,27 +91,27 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/src/tsconfig.json: *new* +/user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} +/user/username/projects/myproject/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: *new* - {"pollingInterval":2000} /user/username/projects/myproject/src/large: *new* {"pollingInterval":500} /user/username/projects/myproject/src/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* - {"pollingInterval":500} +/user/username/projects/myproject/src/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/tsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: *new* + {} /user/username/projects/myproject/src: *new* {} /user/username/projects/myproject/src/large.js: *new* {} -/a/lib/lib.d.ts: *new* - {} diff --git a/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-js-file-is-included-by-tsconfig.js b/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-js-file-is-included-by-tsconfig.js index ed534af2c719c..ccafa5e8998c7 100644 --- a/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-js-file-is-included-by-tsconfig.js +++ b/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-js-file-is-included-by-tsconfig.js @@ -195,9 +195,9 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src/large.js: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} diff --git a/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-ts-file-is-included-by-module-resolution.js b/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-ts-file-is-included-by-module-resolution.js index 0fa16dbf3b99b..982934421b447 100644 --- a/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-ts-file-is-included-by-module-resolution.js +++ b/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-ts-file-is-included-by-module-resolution.js @@ -75,23 +75,23 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/src/tsconfig.json: *new* +/user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} +/user/username/projects/myproject/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: *new* - {"pollingInterval":2000} /user/username/projects/myproject/src/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* - {"pollingInterval":500} +/user/username/projects/myproject/src/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/tsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/src/large.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/src/large.ts: *new* + {} diff --git a/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-ts-file-is-included-by-tsconfig.js b/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-ts-file-is-included-by-tsconfig.js index a583e8ad83d12..0531e7a83bcc1 100644 --- a/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-ts-file-is-included-by-tsconfig.js +++ b/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-ts-file-is-included-by-tsconfig.js @@ -178,9 +178,9 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src/large.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} diff --git a/tests/baselines/reference/tsserver/events/projectLanguageServiceState/language-service-disabled-events-are-triggered.js b/tests/baselines/reference/tsserver/events/projectLanguageServiceState/language-service-disabled-events-are-triggered.js index d168a29157d55..aa18a8cffd6a4 100644 --- a/tests/baselines/reference/tsserver/events/projectLanguageServiceState/language-service-disabled-events-are-triggered.js +++ b/tests/baselines/reference/tsserver/events/projectLanguageServiceState/language-service-disabled-events-are-triggered.js @@ -340,12 +340,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/a/data/package.json: *new* + {} /a/jsconfig.json: {} /a/largefile.js: {} -/a/data/package.json: *new* - {} FsWatchesRecursive:: /a: @@ -442,20 +442,20 @@ After running Timeout callback:: count: 2 8: *ensureProjectForOpenFiles* PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/bower_components: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} /a/node_modules: *new* {"pollingInterval":500} FsWatches:: +/a/data/package.json: + {} /a/jsconfig.json: {} /a/largefile.js: {} -/a/data/package.json: - {} FsWatchesRecursive:: /a: diff --git a/tests/baselines/reference/tsserver/events/projectLoading/change-is-detected-in-an-extended-config-file-when-using-default-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/change-is-detected-in-an-extended-config-file-when-using-default-event-handler.js index 210d4f3d8558c..b8c1bb2dd128b 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/change-is-detected-in-an-extended-config-file-when-using-default-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/change-is-detected-in-an-extended-config-file-when-using-default-event-handler.js @@ -161,11 +161,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/a/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/b/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/events/projectLoading/change-is-detected-in-an-extended-config-file-when-using-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/change-is-detected-in-an-extended-config-file-when-using-event-handler.js index f6b35dec91c42..91edd0f3fbb14 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/change-is-detected-in-an-extended-config-file-when-using-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/change-is-detected-in-an-extended-config-file-when-using-event-handler.js @@ -158,11 +158,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/a/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/b/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/events/projectLoading/change-is-detected-in-the-config-file-when-using-default-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/change-is-detected-in-the-config-file-when-using-default-event-handler.js index fd3f88084f010..f9108f1beca99 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/change-is-detected-in-the-config-file-when-using-default-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/change-is-detected-in-the-config-file-when-using-default-event-handler.js @@ -154,10 +154,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/a/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/a: *new* diff --git a/tests/baselines/reference/tsserver/events/projectLoading/change-is-detected-in-the-config-file-when-using-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/change-is-detected-in-the-config-file-when-using-event-handler.js index ef4f04e7f274e..11ce13c71170f 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/change-is-detected-in-the-config-file-when-using-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/change-is-detected-in-the-config-file-when-using-event-handler.js @@ -151,10 +151,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/a/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/a: *new* diff --git a/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-disabled-when-using-default-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-disabled-when-using-default-event-handler.js index c03fd3cd18520..435f85db5dff1 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-disabled-when-using-default-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-disabled-when-using-default-event-handler.js @@ -218,11 +218,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/a/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /user/username/projects/a/a.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/a/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-disabled-when-using-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-disabled-when-using-event-handler.js index 5d853e0a34b70..52e2b51250371 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-disabled-when-using-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-disabled-when-using-event-handler.js @@ -215,11 +215,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/a/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /user/username/projects/a/a.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/a/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-false-when-using-default-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-false-when-using-default-event-handler.js index d470159f9c963..8b1a90801f619 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-false-when-using-default-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-false-when-using-default-event-handler.js @@ -172,11 +172,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/a/a.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/a/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-false-when-using-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-false-when-using-event-handler.js index 0ca665f725c7f..9b33c1956370a 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-false-when-using-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-false-when-using-event-handler.js @@ -169,11 +169,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/a/a.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/a/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-true-and-file-is-opened-when-using-default-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-true-and-file-is-opened-when-using-default-event-handler.js index b9bb15f406d66..c6b96c3eaf2a0 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-true-and-file-is-opened-when-using-default-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-true-and-file-is-opened-when-using-default-event-handler.js @@ -213,10 +213,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/a/tsconfig.json: - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/a/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/a: *new* diff --git a/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-true-and-file-is-opened-when-using-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-true-and-file-is-opened-when-using-event-handler.js index 7f1d406bea7cb..673b7c6b66fd5 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-true-and-file-is-opened-when-using-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/lazyConfiguredProjectsFromExternalProject-is-true-and-file-is-opened-when-using-event-handler.js @@ -210,10 +210,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/a/tsconfig.json: - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/a/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/a: *new* diff --git a/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-disableSourceOfProjectReferenceRedirect-when-using-default-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-disableSourceOfProjectReferenceRedirect-when-using-default-event-handler.js index 8939545ed3285..d89ef6e45e462 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-disableSourceOfProjectReferenceRedirect-when-using-default-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-disableSourceOfProjectReferenceRedirect-when-using-default-event-handler.js @@ -209,20 +209,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/b/tsconfig.json: *new* - {} -/user/username/projects/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/a/a.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/a/tsconfig.json: *new* + {} +/user/username/projects/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/b: *new* - {} /user/username/projects/a: *new* {} +/user/username/projects/b: *new* + {} Before request @@ -393,29 +393,29 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/a/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/b/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/a/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/b/tsconfig.json: - {} -/user/username/projects/a/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/a/a.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/a/a.d.ts.map: *new* {} /user/username/projects/a/a.ts: *new* {} +/user/username/projects/a/tsconfig.json: + {} +/user/username/projects/b/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/b: - {} /user/username/projects/a: {} +/user/username/projects/b: + {} diff --git a/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-disableSourceOfProjectReferenceRedirect-when-using-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-disableSourceOfProjectReferenceRedirect-when-using-event-handler.js index bdf1a53d0239c..839a85f06e57d 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-disableSourceOfProjectReferenceRedirect-when-using-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-disableSourceOfProjectReferenceRedirect-when-using-event-handler.js @@ -206,20 +206,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/b/tsconfig.json: *new* - {} -/user/username/projects/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/a/a.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/a/tsconfig.json: *new* + {} +/user/username/projects/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/b: *new* - {} /user/username/projects/a: *new* {} +/user/username/projects/b: *new* + {} Before request @@ -387,29 +387,29 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/a/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/b/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/a/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/b/tsconfig.json: - {} -/user/username/projects/a/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/a/a.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/a/a.d.ts.map: *new* {} /user/username/projects/a/a.ts: *new* {} +/user/username/projects/a/tsconfig.json: + {} +/user/username/projects/b/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/b: - {} /user/username/projects/a: {} +/user/username/projects/b: + {} diff --git a/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-when-using-default-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-when-using-default-event-handler.js index fa7d6987d9784..c9cc12cc0cbeb 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-when-using-default-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-when-using-default-event-handler.js @@ -205,20 +205,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/b/tsconfig.json: *new* - {} -/user/username/projects/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/a/a.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/a/tsconfig.json: *new* + {} +/user/username/projects/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/b: *new* - {} /user/username/projects/a: *new* {} +/user/username/projects/b: *new* + {} Before request @@ -387,25 +387,25 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/a/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/b/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/a/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/b/tsconfig.json: - {} -/user/username/projects/a/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/a/a.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/a/tsconfig.json: + {} +/user/username/projects/b/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/b: - {} /user/username/projects/a: {} +/user/username/projects/b: + {} diff --git a/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-when-using-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-when-using-event-handler.js index bd6abbf005e90..8ef0cadaa36e7 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-when-using-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-when-using-event-handler.js @@ -202,20 +202,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/b/tsconfig.json: *new* - {} -/user/username/projects/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/a/a.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/a/tsconfig.json: *new* + {} +/user/username/projects/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/b: *new* - {} /user/username/projects/a: *new* {} +/user/username/projects/b: *new* + {} Before request @@ -381,25 +381,25 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/a/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/b/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/a/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/b/tsconfig.json: - {} -/user/username/projects/a/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/a/a.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/a/tsconfig.json: + {} +/user/username/projects/b/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/b: - {} /user/username/projects/a: {} +/user/username/projects/b: + {} diff --git a/tests/baselines/reference/tsserver/events/projectLoading/project-is-created-by-open-file-when-using-default-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/project-is-created-by-open-file-when-using-default-event-handler.js index 2bb6d4d5f67a8..9ab4e3b74f4fc 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/project-is-created-by-open-file-when-using-default-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/project-is-created-by-open-file-when-using-default-event-handler.js @@ -160,10 +160,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/a/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/a: *new* @@ -305,16 +305,16 @@ After request PolledWatches:: /user/username/projects/a/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/b/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/a/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/a/tsconfig.json: + {} /user/username/projects/b/tsconfig.json: *new* {} diff --git a/tests/baselines/reference/tsserver/events/projectLoading/project-is-created-by-open-file-when-using-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/project-is-created-by-open-file-when-using-event-handler.js index a4e0c5b85ef45..fbe7495845c80 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/project-is-created-by-open-file-when-using-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/project-is-created-by-open-file-when-using-event-handler.js @@ -157,10 +157,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/a/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/a: *new* @@ -299,16 +299,16 @@ After request PolledWatches:: /user/username/projects/a/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/b/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/a/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/a/tsconfig.json: + {} /user/username/projects/b/tsconfig.json: *new* {} diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js index f4fb0066cd259..8afe1c371d552 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js @@ -158,10 +158,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/project/tsconfig.json: *new* - {} /a/b/project/file3.ts: *new* {} +/a/b/project/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js index 7850fe4cf6c7e..3d16e746f334f 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js @@ -162,23 +162,23 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: *new* +/user/username/rootfolder/node_modules: *new* {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/b/node_modules: *new* {"pollingInterval":500} +/user/username/rootfolder/otherfolder/a/b/project/node_modules: *new* + {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/node_modules: *new* {"pollingInterval":500} /user/username/rootfolder/otherfolder/node_modules: *new* {"pollingInterval":500} -/user/username/rootfolder/node_modules: *new* - {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/rootfolder/otherfolder/a/b/project/file3.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -252,32 +252,32 @@ export class a { } PolledWatches:: +/user/username/rootfolder/node_modules: + {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/b/project/node_modules: {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/node_modules: {"pollingInterval":500} /user/username/rootfolder/otherfolder/node_modules: {"pollingInterval":500} -/user/username/rootfolder/node_modules: - {"pollingInterval":500} PolledWatches *deleted*:: /user/username/rootfolder/otherfolder/a/b/node_modules: {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/rootfolder/otherfolder/a/b/project/file3.ts: {} -/a/lib/lib.d.ts: +/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: {} FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} /user/username/rootfolder/otherfolder/a/b/node_modules: *new* {} +/user/username/rootfolder/otherfolder/a/b/project: + {} Info seq [hh:mm:ss:mss] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json @@ -354,23 +354,23 @@ PolledWatches:: {"pollingInterval":500} PolledWatches *deleted*:: +/user/username/rootfolder/node_modules: + {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/node_modules: {"pollingInterval":500} /user/username/rootfolder/otherfolder/node_modules: {"pollingInterval":500} -/user/username/rootfolder/node_modules: - {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/rootfolder/otherfolder/a/b/project/file3.ts: {} -/a/lib/lib.d.ts: +/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: {} FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} /user/username/rootfolder/otherfolder/a/b/node_modules: {} +/user/username/rootfolder/otherfolder/a/b/project: + {} diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js index b19c6169d38df..f69f6e5f34b75 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js @@ -182,20 +182,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -265,22 +265,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -369,17 +369,17 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1consumer2.ts: *new* {} @@ -389,7 +389,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-always-return-the-file-itself-if---out-or---outFile-is-specified.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-always-return-the-file-itself-if---out-or---outFile-is-specified.js index 08c9423173b92..f414205576b0b 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-always-return-the-file-itself-if---out-or---outFile-is-specified.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-always-return-the-file-itself-if---out-or---outFile-is-specified.js @@ -184,16 +184,16 @@ After request PolledWatches:: /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -263,20 +263,20 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -363,13 +363,13 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1consumer2.ts: *new* {} @@ -379,7 +379,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-deleted-files.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-deleted-files.js index 90727c77c2831..94dc88ba9ebed 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-deleted-files.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-deleted-files.js @@ -179,20 +179,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -262,22 +262,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -371,17 +371,17 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/globalfile3.ts: *new* {} @@ -389,7 +389,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-newly-created-files.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-newly-created-files.js index 681a3f1b9a966..31af295f6f28a 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-newly-created-files.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-newly-created-files.js @@ -179,20 +179,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -262,22 +262,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -383,17 +383,17 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1consumer2.ts: *new* {} @@ -405,7 +405,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-the-reference-map-changes.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-the-reference-map-changes.js index e6481e9b1196f..6e7f0cf2e4b71 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-the-reference-map-changes.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-the-reference-map-changes.js @@ -179,20 +179,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -262,22 +262,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -380,15 +380,15 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project: {} @@ -400,7 +400,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatchesRecursive:: @@ -546,17 +546,17 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/project/file1consumer2.ts: {} @@ -566,7 +566,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: {} -/a/lib/lib.d.ts: +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-contains-only-itself.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-contains-only-itself.js index 6a61579305a0e..fd9a9cc94852f 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-contains-only-itself.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-contains-only-itself.js @@ -179,20 +179,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -262,22 +262,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -366,17 +366,17 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1consumer2.ts: *new* {} @@ -386,7 +386,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-detect-changes-in-non-root-files.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-detect-changes-in-non-root-files.js index 7e81ddb892a8e..9159d38603b52 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-detect-changes-in-non-root-files.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-detect-changes-in-non-root-files.js @@ -177,20 +177,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /users/username/projects/project/moduleFile1.ts :: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Scheduled: /users/username/projects/project/tsconfig.jsonFailedLookupInvalidation @@ -240,22 +240,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} Info seq [hh:mm:ss:mss] Running: /users/username/projects/project/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Scheduled: /users/username/projects/project/tsconfig.json, Cancelled earlier one @@ -326,21 +326,21 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/modulefile1.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-detect-non-existing-code-file.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-detect-non-existing-code-file.js index 1b4d84d1b4271..18187c9dba537 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-detect-non-existing-code-file.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-detect-non-existing-code-file.js @@ -178,14 +178,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile2.ts: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile2.ts: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: /users/username/projects/project/tsconfig.json: *new* @@ -216,12 +216,12 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile2.ts: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: @@ -306,18 +306,18 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile2.ts: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -340,20 +340,20 @@ export var Foo4 = 10; PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile2.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -410,18 +410,18 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/modulefile2.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-detect-removed-code-file.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-detect-removed-code-file.js index 398bb9be77046..36682293668a8 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-detect-removed-code-file.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-detect-removed-code-file.js @@ -178,14 +178,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1.ts: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1.ts: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: /users/username/projects/project/tsconfig.json: *new* @@ -231,16 +231,16 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/users/username/projects/project/modulefile1.ts: - {"pollingInterval":500} /a/lib/lib.d.ts: {"pollingInterval":500} +/users/username/projects/project/modulefile1.ts: + {"pollingInterval":500} FsWatches:: /users/username/projects/project/tsconfig.json: @@ -298,18 +298,18 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} /users/username/projects/project/modulefile1.ts: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-return-all-files-if-a-global-file-changed-shape.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-return-all-files-if-a-global-file-changed-shape.js index 29c78ee526fb6..56752a32f7420 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-return-all-files-if-a-global-file-changed-shape.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-return-all-files-if-a-global-file-changed-shape.js @@ -179,20 +179,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -262,22 +262,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -366,17 +366,17 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1consumer2.ts: *new* {} @@ -386,7 +386,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-return-cascaded-affected-file-list.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-return-cascaded-affected-file-list.js index 4788d1697f713..289d85e559774 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-return-cascaded-affected-file-list.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-return-cascaded-affected-file-list.js @@ -179,20 +179,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -272,22 +272,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -400,17 +400,17 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1consumer1consumer1.ts: *new* {} @@ -422,7 +422,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-work-fine-for-files-with-circular-references.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-work-fine-for-files-with-circular-references.js index ffc2ab7ee7526..9cdc3f98281c2 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-work-fine-for-files-with-circular-references.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-work-fine-for-files-with-circular-references.js @@ -178,14 +178,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/file2.ts: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/file2.ts: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: /users/username/projects/project/tsconfig.json: *new* @@ -232,16 +232,16 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/users/username/projects/project/file2.ts: - {"pollingInterval":500} /a/lib/lib.d.ts: {"pollingInterval":500} +/users/username/projects/project/file2.ts: + {"pollingInterval":500} FsWatches:: /users/username/projects/project/tsconfig.json: @@ -304,17 +304,17 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-when---out-is-set.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-when---out-is-set.js index d0ba80a990252..9832c076a8f63 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-when---out-is-set.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-when---out-is-set.js @@ -163,16 +163,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -239,18 +239,18 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/b.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-when---outFile-is-set.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-when---outFile-is-set.js index 7168e2795e198..952c297f69d2e 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-when---outFile-is-set.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-when---outFile-is-set.js @@ -148,16 +148,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -224,18 +224,18 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/b.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-when-adding-new-file.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-when-adding-new-file.js index a3924a8b0067e..c78df5800a919 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-when-adding-new-file.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-when-adding-new-file.js @@ -145,16 +145,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -221,18 +221,18 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/file2.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -302,20 +302,20 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/file2.ts: {} /users/username/projects/project/file3.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-when-both-options-are-not-set.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-when-both-options-are-not-set.js index 4678255c092c4..2e40bd101a44a 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-when-both-options-are-not-set.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-when-both-options-are-not-set.js @@ -145,16 +145,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -221,18 +221,18 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/b.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js index dfce44d674316..327786d150412 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js @@ -161,10 +161,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/project/tsconfig.json: *new* - {} /a/b/project/file3.ts: *new* {} +/a/b/project/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js index 80f7a35419bb1..301c2660ac107 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js @@ -165,23 +165,23 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: *new* +/user/username/rootfolder/node_modules: *new* {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/b/node_modules: *new* {"pollingInterval":500} +/user/username/rootfolder/otherfolder/a/b/project/node_modules: *new* + {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/node_modules: *new* {"pollingInterval":500} /user/username/rootfolder/otherfolder/node_modules: *new* {"pollingInterval":500} -/user/username/rootfolder/node_modules: *new* - {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/rootfolder/otherfolder/a/b/project/file3.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -256,32 +256,32 @@ export class a { } PolledWatches:: +/user/username/rootfolder/node_modules: + {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/b/project/node_modules: {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/node_modules: {"pollingInterval":500} /user/username/rootfolder/otherfolder/node_modules: {"pollingInterval":500} -/user/username/rootfolder/node_modules: - {"pollingInterval":500} PolledWatches *deleted*:: /user/username/rootfolder/otherfolder/a/b/node_modules: {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/rootfolder/otherfolder/a/b/project/file3.ts: {} -/a/lib/lib.d.ts: +/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: {} FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} /user/username/rootfolder/otherfolder/a/b/node_modules: *new* {} +/user/username/rootfolder/otherfolder/a/b/project: + {} Info seq [hh:mm:ss:mss] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json @@ -359,23 +359,23 @@ PolledWatches:: {"pollingInterval":500} PolledWatches *deleted*:: +/user/username/rootfolder/node_modules: + {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/node_modules: {"pollingInterval":500} /user/username/rootfolder/otherfolder/node_modules: {"pollingInterval":500} -/user/username/rootfolder/node_modules: - {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/rootfolder/otherfolder/a/b/project/file3.ts: {} -/a/lib/lib.d.ts: +/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: {} FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} /user/username/rootfolder/otherfolder/a/b/node_modules: {} +/user/username/rootfolder/otherfolder/a/b/project: + {} diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js index 72946c4e9ef35..f3c200bca9a39 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js @@ -185,20 +185,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -268,22 +268,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -373,17 +373,17 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1consumer2.ts: *new* {} @@ -393,7 +393,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---out-or---outFile-is-specified.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---out-or---outFile-is-specified.js index 923d4c858d04d..77d34c102a10e 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---out-or---outFile-is-specified.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---out-or---outFile-is-specified.js @@ -187,16 +187,16 @@ After request PolledWatches:: /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -266,20 +266,20 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -367,13 +367,13 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1consumer2.ts: *new* {} @@ -383,7 +383,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-deleted-files.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-deleted-files.js index 8a05e478221f3..4be9d1526771b 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-deleted-files.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-deleted-files.js @@ -182,20 +182,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -265,22 +265,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -375,17 +375,17 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/globalfile3.ts: *new* {} @@ -393,7 +393,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-newly-created-files.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-newly-created-files.js index e87357455176e..b06c826b784bc 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-newly-created-files.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-newly-created-files.js @@ -182,20 +182,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -265,22 +265,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -387,17 +387,17 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1consumer2.ts: *new* {} @@ -409,7 +409,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-the-reference-map-changes.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-the-reference-map-changes.js index fd920fdbb7568..13aa08ea191a5 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-the-reference-map-changes.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-the-reference-map-changes.js @@ -182,20 +182,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -265,22 +265,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -384,15 +384,15 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project: {} @@ -404,7 +404,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatchesRecursive:: @@ -552,17 +552,17 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/project/file1consumer2.ts: {} @@ -572,7 +572,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: {} -/a/lib/lib.d.ts: +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-contains-only-itself.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-contains-only-itself.js index 088d215f335f7..73fbadac755a4 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-contains-only-itself.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-contains-only-itself.js @@ -182,20 +182,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -265,22 +265,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -370,17 +370,17 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1consumer2.ts: *new* {} @@ -390,7 +390,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-detect-changes-in-non-root-files.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-detect-changes-in-non-root-files.js index 949a76b7ca862..26f1e235e1070 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-detect-changes-in-non-root-files.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-detect-changes-in-non-root-files.js @@ -180,20 +180,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /users/username/projects/project/moduleFile1.ts :: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Scheduled: /users/username/projects/project/tsconfig.jsonFailedLookupInvalidation @@ -243,22 +243,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} Info seq [hh:mm:ss:mss] Running: /users/username/projects/project/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Scheduled: /users/username/projects/project/tsconfig.json, Cancelled earlier one @@ -330,21 +330,21 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/modulefile1.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-detect-non-existing-code-file.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-detect-non-existing-code-file.js index 8e788cc1903bc..19ac3bac596dc 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-detect-non-existing-code-file.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-detect-non-existing-code-file.js @@ -181,14 +181,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile2.ts: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile2.ts: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: /users/username/projects/project/tsconfig.json: *new* @@ -219,12 +219,12 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile2.ts: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: @@ -310,18 +310,18 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile2.ts: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -344,20 +344,20 @@ export var Foo4 = 10; PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile2.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -415,18 +415,18 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/modulefile2.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-detect-removed-code-file.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-detect-removed-code-file.js index a000f5926a8c9..783e25bcbd8f0 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-detect-removed-code-file.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-detect-removed-code-file.js @@ -181,14 +181,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1.ts: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1.ts: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: /users/username/projects/project/tsconfig.json: *new* @@ -234,16 +234,16 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/users/username/projects/project/modulefile1.ts: - {"pollingInterval":500} /a/lib/lib.d.ts: {"pollingInterval":500} +/users/username/projects/project/modulefile1.ts: + {"pollingInterval":500} FsWatches:: /users/username/projects/project/tsconfig.json: @@ -302,18 +302,18 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} /users/username/projects/project/modulefile1.ts: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-return-all-files-if-a-global-file-changed-shape.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-return-all-files-if-a-global-file-changed-shape.js index 989c876cdc171..bacd04d03046e 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-return-all-files-if-a-global-file-changed-shape.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-return-all-files-if-a-global-file-changed-shape.js @@ -182,20 +182,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -265,22 +265,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -370,17 +370,17 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1consumer2.ts: *new* {} @@ -390,7 +390,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-return-cascaded-affected-file-list.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-return-cascaded-affected-file-list.js index ccf8cf860179b..3a51541502132 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-return-cascaded-affected-file-list.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-return-cascaded-affected-file-list.js @@ -182,20 +182,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -275,22 +275,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -404,17 +404,17 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1consumer1consumer1.ts: *new* {} @@ -426,7 +426,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-work-fine-for-files-with-circular-references.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-work-fine-for-files-with-circular-references.js index 43b887b0215dc..f2bcb5b059918 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-work-fine-for-files-with-circular-references.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-work-fine-for-files-with-circular-references.js @@ -181,14 +181,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/file2.ts: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/file2.ts: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: /users/username/projects/project/tsconfig.json: *new* @@ -235,16 +235,16 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/users/username/projects/project/file2.ts: - {"pollingInterval":500} /a/lib/lib.d.ts: {"pollingInterval":500} +/users/username/projects/project/file2.ts: + {"pollingInterval":500} FsWatches:: /users/username/projects/project/tsconfig.json: @@ -308,17 +308,17 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-when---out-is-set.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-when---out-is-set.js index f776b32224334..9d2ddd5242fda 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-when---out-is-set.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-when---out-is-set.js @@ -166,16 +166,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -243,18 +243,18 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/b.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-when---outFile-is-set.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-when---outFile-is-set.js index c6a70ac793a1e..bdc44c541e06c 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-when---outFile-is-set.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-when---outFile-is-set.js @@ -151,16 +151,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -228,18 +228,18 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/b.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-when-adding-new-file.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-when-adding-new-file.js index 1df6a4bd90cdd..f8b844095bdf5 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-when-adding-new-file.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-when-adding-new-file.js @@ -148,16 +148,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -225,18 +225,18 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/file2.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -307,20 +307,20 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/file2.ts: {} /users/username/projects/project/file3.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-when-both-options-are-not-set.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-when-both-options-are-not-set.js index 4c3d4c976d898..1b4f4cfba5bfb 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-when-both-options-are-not-set.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-when-both-options-are-not-set.js @@ -148,16 +148,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -225,18 +225,18 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/b.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js index d92a3680ba764..f2224dd7f67da 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js @@ -161,10 +161,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/project/tsconfig.json: *new* - {} /a/b/project/file3.ts: *new* {} +/a/b/project/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js index ae5b9c4d331d5..8c19811479ca3 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js @@ -165,23 +165,23 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: *new* +/user/username/rootfolder/node_modules: *new* {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/b/node_modules: *new* {"pollingInterval":500} +/user/username/rootfolder/otherfolder/a/b/project/node_modules: *new* + {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/node_modules: *new* {"pollingInterval":500} /user/username/rootfolder/otherfolder/node_modules: *new* {"pollingInterval":500} -/user/username/rootfolder/node_modules: *new* - {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/rootfolder/otherfolder/a/b/project/file3.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -258,32 +258,32 @@ export class a { } PolledWatches:: +/user/username/rootfolder/node_modules: + {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/b/project/node_modules: {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/node_modules: {"pollingInterval":500} /user/username/rootfolder/otherfolder/node_modules: {"pollingInterval":500} -/user/username/rootfolder/node_modules: - {"pollingInterval":500} PolledWatches *deleted*:: /user/username/rootfolder/otherfolder/a/b/node_modules: {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/rootfolder/otherfolder/a/b/project/file3.ts: {} -/a/lib/lib.d.ts: +/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: {} FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} /user/username/rootfolder/otherfolder/a/b/node_modules: *new* {} +/user/username/rootfolder/otherfolder/a/b/project: + {} Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json @@ -332,26 +332,26 @@ PolledWatches:: {"pollingInterval":500} PolledWatches *deleted*:: +/user/username/rootfolder/node_modules: + {"pollingInterval":500} /user/username/rootfolder/otherfolder/a/node_modules: {"pollingInterval":500} /user/username/rootfolder/otherfolder/node_modules: {"pollingInterval":500} -/user/username/rootfolder/node_modules: - {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/rootfolder/otherfolder/a/b/project/file3.ts: {} -/a/lib/lib.d.ts: +/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: {} FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} /user/username/rootfolder/otherfolder/a/b/node_modules: {} +/user/username/rootfolder/otherfolder/a/b/project: + {} Before running Timeout callback:: count: 1 7: *ensureProjectForOpenFiles* diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js index 33e417187e360..1bd697fb8fc72 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js @@ -185,20 +185,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -268,22 +268,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -374,17 +374,17 @@ After running Timeout callback:: count: 1 17: checkOne PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1consumer2.ts: *new* {} @@ -394,7 +394,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---out-or---outFile-is-specified.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---out-or---outFile-is-specified.js index 027d6c9295eb2..eb46ff916b00e 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---out-or---outFile-is-specified.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---out-or---outFile-is-specified.js @@ -187,16 +187,16 @@ After request PolledWatches:: /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -266,20 +266,20 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -368,13 +368,13 @@ After running Timeout callback:: count: 1 17: checkOne PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1consumer2.ts: *new* {} @@ -384,7 +384,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-deleted-files.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-deleted-files.js index ba73a1622cc9f..7f4a08a042fcf 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-deleted-files.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-deleted-files.js @@ -182,20 +182,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -265,22 +265,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -376,17 +376,17 @@ After running Timeout callback:: count: 1 20: checkOne PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/globalfile3.ts: *new* {} @@ -394,7 +394,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-newly-created-files.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-newly-created-files.js index 9f443a257fadb..6887454380403 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-newly-created-files.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-newly-created-files.js @@ -182,20 +182,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -265,22 +265,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -388,17 +388,17 @@ After running Timeout callback:: count: 1 20: checkOne PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1consumer2.ts: *new* {} @@ -410,7 +410,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-the-reference-map-changes.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-the-reference-map-changes.js index 52f2db7697887..36153a153c42c 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-the-reference-map-changes.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-the-reference-map-changes.js @@ -182,20 +182,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -265,22 +265,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -385,15 +385,15 @@ After running Timeout callback:: count: 1 17: checkOne PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project: {} @@ -405,7 +405,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatchesRecursive:: @@ -567,17 +567,17 @@ After running Timeout callback:: count: 1 23: checkOne PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/project/file1consumer2.ts: {} @@ -587,7 +587,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: {} -/a/lib/lib.d.ts: +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-contains-only-itself.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-contains-only-itself.js index 4d10db51e0560..2c51c8fe6c982 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-contains-only-itself.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-contains-only-itself.js @@ -182,20 +182,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -265,22 +265,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -371,17 +371,17 @@ After running Timeout callback:: count: 1 17: checkOne PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1consumer2.ts: *new* {} @@ -391,7 +391,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-detect-changes-in-non-root-files.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-detect-changes-in-non-root-files.js index fc407844cbc42..f58ea7da0ab3b 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-detect-changes-in-non-root-files.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-detect-changes-in-non-root-files.js @@ -180,20 +180,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /users/username/projects/project/moduleFile1.ts :: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Scheduled: /users/username/projects/project/tsconfig.jsonFailedLookupInvalidation @@ -243,22 +243,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} Info seq [hh:mm:ss:mss] Running: /users/username/projects/project/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Scheduled: /users/username/projects/project/tsconfig.json, Cancelled earlier one @@ -331,21 +331,21 @@ After running Timeout callback:: count: 1 9: checkOne PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/modulefile1.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-detect-non-existing-code-file.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-detect-non-existing-code-file.js index 0915440fff65c..bb68f350ab747 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-detect-non-existing-code-file.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-detect-non-existing-code-file.js @@ -181,14 +181,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile2.ts: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile2.ts: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: /users/username/projects/project/tsconfig.json: *new* @@ -219,12 +219,12 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile2.ts: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: @@ -311,18 +311,18 @@ After running Timeout callback:: count: 1 3: checkOne PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile2.ts: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -346,20 +346,20 @@ export var Foo4 = 10; PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile2.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -428,18 +428,18 @@ After running Timeout callback:: count: 1 8: checkOne PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/modulefile2.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-detect-removed-code-file.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-detect-removed-code-file.js index fd60c9d1dc0e3..b22cb7ee35160 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-detect-removed-code-file.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-detect-removed-code-file.js @@ -181,14 +181,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1.ts: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1.ts: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: /users/username/projects/project/tsconfig.json: *new* @@ -234,16 +234,16 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/users/username/projects/project/modulefile1.ts: - {"pollingInterval":500} /a/lib/lib.d.ts: {"pollingInterval":500} +/users/username/projects/project/modulefile1.ts: + {"pollingInterval":500} FsWatches:: /users/username/projects/project/tsconfig.json: @@ -303,18 +303,18 @@ After running Timeout callback:: count: 1 9: checkOne PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} /users/username/projects/project/modulefile1.ts: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-return-all-files-if-a-global-file-changed-shape.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-return-all-files-if-a-global-file-changed-shape.js index bdb1d41730037..9dc0eae186ffd 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-return-all-files-if-a-global-file-changed-shape.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-return-all-files-if-a-global-file-changed-shape.js @@ -182,20 +182,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -265,22 +265,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -371,17 +371,17 @@ After running Timeout callback:: count: 1 17: checkOne PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1consumer2.ts: *new* {} @@ -391,7 +391,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-return-cascaded-affected-file-list.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-return-cascaded-affected-file-list.js index 9d79105dc7497..df95ae1386687 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-return-cascaded-affected-file-list.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-return-cascaded-affected-file-list.js @@ -182,20 +182,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/modulefile1: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/modulefile1: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -275,22 +275,22 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: +/users/username/projects/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/modulefile1: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -405,17 +405,17 @@ After running Timeout callback:: count: 1 20: checkOne PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile1: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file1consumer1consumer1.ts: *new* {} @@ -427,7 +427,7 @@ FsWatches:: {} /users/username/projects/project/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatches *deleted*:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-work-fine-for-files-with-circular-references.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-work-fine-for-files-with-circular-references.js index 2064ad94abaaa..76f0c0f7e78d3 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-work-fine-for-files-with-circular-references.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-work-fine-for-files-with-circular-references.js @@ -181,14 +181,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/file2.ts: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/file2.ts: *new* + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: /users/username/projects/project/tsconfig.json: *new* @@ -235,16 +235,16 @@ interface Array { length: number; [n: number]: T; } PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/users/username/projects/project/file2.ts: - {"pollingInterval":500} /a/lib/lib.d.ts: {"pollingInterval":500} +/users/username/projects/project/file2.ts: + {"pollingInterval":500} FsWatches:: /users/username/projects/project/tsconfig.json: @@ -309,17 +309,17 @@ After running Timeout callback:: count: 1 7: checkOne PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-when---out-is-set.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-when---out-is-set.js index a6df4228c8720..e8a337e00b62a 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-when---out-is-set.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-when---out-is-set.js @@ -166,16 +166,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -244,18 +244,18 @@ After running Timeout callback:: count: 1 3: checkOne PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/b.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-when---outFile-is-set.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-when---outFile-is-set.js index 69023f1051c57..b439bd39ca502 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-when---outFile-is-set.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-when---outFile-is-set.js @@ -151,16 +151,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -229,18 +229,18 @@ After running Timeout callback:: count: 1 3: checkOne PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/b.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-when-adding-new-file.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-when-adding-new-file.js index fd92c94736a9c..7746ca7bf7043 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-when-adding-new-file.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-when-adding-new-file.js @@ -148,16 +148,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -226,18 +226,18 @@ After running Timeout callback:: count: 1 3: checkOne PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/file2.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -320,20 +320,20 @@ After running Timeout callback:: count: 1 6: checkOne PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/file2.ts: {} /users/username/projects/project/file3.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-when-both-options-are-not-set.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-when-both-options-are-not-set.js index a71de8162819c..7f86560897e66 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-when-both-options-are-not-set.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-when-both-options-are-not-set.js @@ -148,16 +148,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -226,18 +226,18 @@ After running Timeout callback:: count: 1 3: checkOne PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/project/b.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/exportMapCache/caches-auto-imports-in-the-same-file.js b/tests/baselines/reference/tsserver/exportMapCache/caches-auto-imports-in-the-same-file.js index 551a3c41703d0..d93b83aac1e29 100644 --- a/tests/baselines/reference/tsserver/exportMapCache/caches-auto-imports-in-the-same-file.js +++ b/tests/baselines/reference/tsserver/exportMapCache/caches-auto-imports-in-the-same-file.js @@ -116,8 +116,6 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /ambient.d.ts: *new* {} /b.ts: *new* @@ -126,6 +124,8 @@ FsWatches:: {} /package.json: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* @@ -171,14 +171,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /ambient.d.ts: {} /lib/foo/constants.d.ts: {} /package.json: {} +/tsconfig.json: + {} FsWatches *deleted*:: /b.ts: diff --git a/tests/baselines/reference/tsserver/exportMapCache/does-not-invalidate-the-cache-when-package.json-is-changed-inconsequentially.js b/tests/baselines/reference/tsserver/exportMapCache/does-not-invalidate-the-cache-when-package.json-is-changed-inconsequentially.js index d9db7d1268042..b30d4b2308ee0 100644 --- a/tests/baselines/reference/tsserver/exportMapCache/does-not-invalidate-the-cache-when-package.json-is-changed-inconsequentially.js +++ b/tests/baselines/reference/tsserver/exportMapCache/does-not-invalidate-the-cache-when-package.json-is-changed-inconsequentially.js @@ -116,8 +116,6 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /ambient.d.ts: *new* {} /b.ts: *new* @@ -126,6 +124,8 @@ FsWatches:: {} /package.json: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* @@ -171,14 +171,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /ambient.d.ts: {} /lib/foo/constants.d.ts: {} /package.json: {} +/tsconfig.json: + {} FsWatches *deleted*:: /b.ts: diff --git a/tests/baselines/reference/tsserver/exportMapCache/does-not-store-transient-symbols-through-program-updates.js b/tests/baselines/reference/tsserver/exportMapCache/does-not-store-transient-symbols-through-program-updates.js index ae86d82de8fbd..1d6fb382c0eab 100644 --- a/tests/baselines/reference/tsserver/exportMapCache/does-not-store-transient-symbols-through-program-updates.js +++ b/tests/baselines/reference/tsserver/exportMapCache/does-not-store-transient-symbols-through-program-updates.js @@ -116,8 +116,6 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /ambient.d.ts: *new* {} /b.ts: *new* @@ -126,6 +124,8 @@ FsWatches:: {} /package.json: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* @@ -171,14 +171,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /ambient.d.ts: {} /lib/foo/constants.d.ts: {} /package.json: {} +/tsconfig.json: + {} FsWatches *deleted*:: /b.ts: diff --git a/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-files-are-deleted.js b/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-files-are-deleted.js index 1262b5e93ae3c..54915ba4c8c95 100644 --- a/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-files-are-deleted.js +++ b/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-files-are-deleted.js @@ -116,8 +116,6 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /ambient.d.ts: *new* {} /b.ts: *new* @@ -126,6 +124,8 @@ FsWatches:: {} /package.json: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* @@ -171,14 +171,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /ambient.d.ts: {} /lib/foo/constants.d.ts: {} /package.json: {} +/tsconfig.json: + {} FsWatches *deleted*:: /b.ts: @@ -284,14 +284,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /ambient.d.ts: {} /lib/foo/constants.d.ts: {} /package.json: {} +/tsconfig.json: + {} FsWatchesRecursive:: /: diff --git a/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-new-files-are-added.js b/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-new-files-are-added.js index 08495e3b37e15..975c9667cef53 100644 --- a/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-new-files-are-added.js +++ b/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-new-files-are-added.js @@ -116,8 +116,6 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /ambient.d.ts: *new* {} /b.ts: *new* @@ -126,6 +124,8 @@ FsWatches:: {} /package.json: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* @@ -171,14 +171,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /ambient.d.ts: {} /lib/foo/constants.d.ts: {} /package.json: {} +/tsconfig.json: + {} FsWatches *deleted*:: /b.ts: @@ -333,8 +333,6 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /ambient.d.ts: {} /lib/foo/constants.d.ts: @@ -343,6 +341,8 @@ FsWatches:: {} /src/a2.ts: *new* {} +/tsconfig.json: + {} FsWatchesRecursive:: /: diff --git a/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-package.json-change-results-in-AutoImportProvider-change.js b/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-package.json-change-results-in-AutoImportProvider-change.js index c8a9866dc190c..450cffe3913e8 100644 --- a/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-package.json-change-results-in-AutoImportProvider-change.js +++ b/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-package.json-change-results-in-AutoImportProvider-change.js @@ -116,8 +116,6 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /ambient.d.ts: *new* {} /b.ts: *new* @@ -126,6 +124,8 @@ FsWatches:: {} /package.json: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* @@ -171,14 +171,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /ambient.d.ts: {} /lib/foo/constants.d.ts: {} /package.json: {} +/tsconfig.json: + {} FsWatches *deleted*:: /b.ts: diff --git a/tests/baselines/reference/tsserver/externalProjects/correctly-handles-changes-in-lib-section-of-config-file.js b/tests/baselines/reference/tsserver/externalProjects/correctly-handles-changes-in-lib-section-of-config-file.js index 2f044f5b1eacf..935d54f007008 100644 --- a/tests/baselines/reference/tsserver/externalProjects/correctly-handles-changes-in-lib-section-of-config-file.js +++ b/tests/baselines/reference/tsserver/externalProjects/correctly-handles-changes-in-lib-section-of-config-file.js @@ -69,10 +69,10 @@ Before running Timeout callback:: count: 2 FsWatches:: -/src/tsconfig.json: *new* - {} /compiler/lib.es5.d.ts: *new* {} +/src/tsconfig.json: *new* + {} FsWatchesRecursive:: /src: *new* @@ -134,11 +134,11 @@ Info seq [hh:mm:ss:mss] Projects: /src/tsconfig.json After running Timeout callback:: count: 0 FsWatches:: -/src/tsconfig.json: +/compiler/lib.es2015.promise.d.ts: *new* {} /compiler/lib.es5.d.ts: {} -/compiler/lib.es2015.promise.d.ts: *new* +/src/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/findAllReferences/does-not-try-to-open-a-file-in-a-project-that-was-updated-and-no-longer-has-the-file.js b/tests/baselines/reference/tsserver/findAllReferences/does-not-try-to-open-a-file-in-a-project-that-was-updated-and-no-longer-has-the-file.js index 2254330b10d09..7346a6db4d692 100644 --- a/tests/baselines/reference/tsserver/findAllReferences/does-not-try-to-open-a-file-in-a-project-that-was-updated-and-no-longer-has-the-file.js +++ b/tests/baselines/reference/tsserver/findAllReferences/does-not-try-to-open-a-file-in-a-project-that-was-updated-and-no-longer-has-the-file.js @@ -162,12 +162,12 @@ PolledWatches:: FsWatches:: /packages/babel-loader/tsconfig.json: *new* {} -/packages/core/tsconfig.json: *new* - {} /packages/core/src/index.ts: *new* {} /packages/core/src/loading-indicator.ts: *new* {} +/packages/core/tsconfig.json: *new* + {} FsWatchesRecursive:: /packages/babel-loader/src: *new* @@ -240,10 +240,10 @@ PolledWatches:: FsWatches:: /packages/babel-loader/tsconfig.json: {} -/packages/core/tsconfig.json: - {} /packages/core/src/loading-indicator.ts: {} +/packages/core/tsconfig.json: + {} FsWatches *deleted*:: /packages/core/src/index.ts: @@ -404,10 +404,10 @@ PolledWatches:: FsWatches:: /packages/babel-loader/tsconfig.json: {} -/packages/core/tsconfig.json: - {} /packages/core/src/loading-indicator.ts: {} +/packages/core/tsconfig.json: + {} FsWatchesRecursive:: /packages/babel-loader/src: 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 a60b2de18651c..c641df57ecd74 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 @@ -167,11 +167,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/logger.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/works-when-extends-is-specified-with-a-case-insensitive-file-system.js b/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/works-when-extends-is-specified-with-a-case-insensitive-file-system.js index 201c8efc30d03..048a5cb72df1d 100644 --- a/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/works-when-extends-is-specified-with-a-case-insensitive-file-system.js +++ b/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/works-when-extends-is-specified-with-a-case-insensitive-file-system.js @@ -104,13 +104,13 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/users/username/dev/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/dev/project/tsconfig.all.json: *new* {} -/users/username/dev/project/types/file2/index.d.ts: *new* +/users/username/dev/project/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/dev/project/types/file2/index.d.ts: *new* {} FsWatchesRecursive:: 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 912bd03e3db87..97ed2d423d0a1 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 @@ -167,11 +167,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/another.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -288,14 +288,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/another.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/logger.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -346,11 +346,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/another.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatches *deleted*:: @@ -398,10 +398,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/another.ts: diff --git a/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-file-moved-to-inferred-project.js b/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-file-moved-to-inferred-project.js index fcda272255f9a..a494f0ed30af5 100644 --- a/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-file-moved-to-inferred-project.js +++ b/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-file-moved-to-inferred-project.js @@ -60,10 +60,10 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/b.ts: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} +/b.ts: *new* + {"pollingInterval":500} FsWatches:: /tsconfig.json: *new* diff --git a/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-multiple-projects.js b/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-multiple-projects.js index 8bbf3681f9ed0..b803c3c6e070b 100644 --- a/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-multiple-projects.js +++ b/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-multiple-projects.js @@ -74,10 +74,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: *new* - {} /a/old.ts: *new* {} +/a/tsconfig.json: *new* + {} Before request @@ -143,10 +143,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/old.ts: {} +/a/tsconfig.json: + {} /b/tsconfig.json: *new* {} diff --git a/tests/baselines/reference/tsserver/getExportReferences/array-destructuring-declaration.js b/tests/baselines/reference/tsserver/getExportReferences/array-destructuring-declaration.js index 0384c55300038..5dfe31f434d7d 100644 --- a/tests/baselines/reference/tsserver/getExportReferences/array-destructuring-declaration.js +++ b/tests/baselines/reference/tsserver/getExportReferences/array-destructuring-declaration.js @@ -74,10 +74,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /mod.ts: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/getExportReferences/const-variable-declaration.js b/tests/baselines/reference/tsserver/getExportReferences/const-variable-declaration.js index 4aef7d3b26e7e..1ded992135ee4 100644 --- a/tests/baselines/reference/tsserver/getExportReferences/const-variable-declaration.js +++ b/tests/baselines/reference/tsserver/getExportReferences/const-variable-declaration.js @@ -74,10 +74,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /mod.ts: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/getExportReferences/nested-object-declaration.js b/tests/baselines/reference/tsserver/getExportReferences/nested-object-declaration.js index ea5d5e58c69e9..998abfbef24f0 100644 --- a/tests/baselines/reference/tsserver/getExportReferences/nested-object-declaration.js +++ b/tests/baselines/reference/tsserver/getExportReferences/nested-object-declaration.js @@ -74,10 +74,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /mod.ts: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/getExportReferences/object-declaration-references-that-renames-destructured-property.js b/tests/baselines/reference/tsserver/getExportReferences/object-declaration-references-that-renames-destructured-property.js index 96cfe921f22cc..670ebbb6f1660 100644 --- a/tests/baselines/reference/tsserver/getExportReferences/object-declaration-references-that-renames-destructured-property.js +++ b/tests/baselines/reference/tsserver/getExportReferences/object-declaration-references-that-renames-destructured-property.js @@ -74,10 +74,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /mod.ts: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/getExportReferences/object-destructuring-declaration.js b/tests/baselines/reference/tsserver/getExportReferences/object-destructuring-declaration.js index b8b7b3380e251..484ea4e5e936a 100644 --- a/tests/baselines/reference/tsserver/getExportReferences/object-destructuring-declaration.js +++ b/tests/baselines/reference/tsserver/getExportReferences/object-destructuring-declaration.js @@ -74,10 +74,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /mod.ts: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/getFileReferences/should-get-file-references.js b/tests/baselines/reference/tsserver/getFileReferences/should-get-file-references.js index 2b815c5874d34..921a3b7e8e0e4 100644 --- a/tests/baselines/reference/tsserver/getFileReferences/should-get-file-references.js +++ b/tests/baselines/reference/tsserver/getFileReferences/should-get-file-references.js @@ -90,14 +90,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/project/tsconfig.json: *new* - {} /project/b.ts: *new* {} /project/c.ts: *new* {} /project/d.ts: *new* {} +/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /project: *new* @@ -137,12 +137,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/project/tsconfig.json: - {} /project/c.ts: {} /project/d.ts: {} +/project/tsconfig.json: + {} FsWatches *deleted*:: /project/b.ts: @@ -188,10 +188,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/project/tsconfig.json: - {} /project/d.ts: {} +/project/tsconfig.json: + {} FsWatches *deleted*:: /project/c.ts: diff --git a/tests/baselines/reference/tsserver/getFileReferences/should-skip-lineText-from-file-references.js b/tests/baselines/reference/tsserver/getFileReferences/should-skip-lineText-from-file-references.js index 9559c0d065611..b73d3d8635ef9 100644 --- a/tests/baselines/reference/tsserver/getFileReferences/should-skip-lineText-from-file-references.js +++ b/tests/baselines/reference/tsserver/getFileReferences/should-skip-lineText-from-file-references.js @@ -90,14 +90,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/project/tsconfig.json: *new* - {} /project/b.ts: *new* {} /project/c.ts: *new* {} /project/d.ts: *new* {} +/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /project: *new* @@ -137,12 +137,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/project/tsconfig.json: - {} /project/c.ts: {} /project/d.ts: {} +/project/tsconfig.json: + {} FsWatches *deleted*:: /project/b.ts: @@ -188,10 +188,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/project/tsconfig.json: - {} /project/d.ts: {} +/project/tsconfig.json: + {} FsWatches *deleted*:: /project/c.ts: diff --git a/tests/baselines/reference/tsserver/getMoveToRefactoringFileSuggestions/skips-lib.d.ts-files.js b/tests/baselines/reference/tsserver/getMoveToRefactoringFileSuggestions/skips-lib.d.ts-files.js index 5f107bc89a04e..71a12d6f0d41a 100644 --- a/tests/baselines/reference/tsserver/getMoveToRefactoringFileSuggestions/skips-lib.d.ts-files.js +++ b/tests/baselines/reference/tsserver/getMoveToRefactoringFileSuggestions/skips-lib.d.ts-files.js @@ -83,14 +83,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* +/a/file3.d.ts: *new* {} /a/lib.d.ts: *new* {} -/a/file3.d.ts: *new* - {} /a/lib.es6.d.ts: *new* {} +/tsconfig.json: *new* + {} Before request diff --git a/tests/baselines/reference/tsserver/getMoveToRefactoringFileSuggestions/suggests-only-.js-file-for-a-.js-filepath.js b/tests/baselines/reference/tsserver/getMoveToRefactoringFileSuggestions/suggests-only-.js-file-for-a-.js-filepath.js index 0f9fe4cd95541..3655214ca850d 100644 --- a/tests/baselines/reference/tsserver/getMoveToRefactoringFileSuggestions/suggests-only-.js-file-for-a-.js-filepath.js +++ b/tests/baselines/reference/tsserver/getMoveToRefactoringFileSuggestions/suggests-only-.js-file-for-a-.js-filepath.js @@ -91,8 +91,6 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /file2.js: *new* {} /file3.mts: *new* @@ -101,6 +99,8 @@ FsWatches:: {} /file5.js: *new* {} +/tsconfig.json: *new* + {} Before request diff --git a/tests/baselines/reference/tsserver/getMoveToRefactoringFileSuggestions/suggests-only-.ts-file-for-a-.ts-filepath.js b/tests/baselines/reference/tsserver/getMoveToRefactoringFileSuggestions/suggests-only-.ts-file-for-a-.ts-filepath.js index 656ad93ccbd26..9e157c24677ba 100644 --- a/tests/baselines/reference/tsserver/getMoveToRefactoringFileSuggestions/suggests-only-.ts-file-for-a-.ts-filepath.js +++ b/tests/baselines/reference/tsserver/getMoveToRefactoringFileSuggestions/suggests-only-.ts-file-for-a-.ts-filepath.js @@ -110,8 +110,6 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /file2.tsx: *new* {} /file3.mts: *new* @@ -124,6 +122,8 @@ FsWatches:: {} /file7.ts: *new* {} +/tsconfig.json: *new* + {} Before request diff --git a/tests/baselines/reference/tsserver/getMoveToRefactoringFileSuggestions/works-for-suggesting-a-list-of-files,-excluding-node_modules-within-a-project.js b/tests/baselines/reference/tsserver/getMoveToRefactoringFileSuggestions/works-for-suggesting-a-list-of-files,-excluding-node_modules-within-a-project.js index 4b7ac756e01ad..e4ae4f56bfe8a 100644 --- a/tests/baselines/reference/tsserver/getMoveToRefactoringFileSuggestions/works-for-suggesting-a-list-of-files,-excluding-node_modules-within-a-project.js +++ b/tests/baselines/reference/tsserver/getMoveToRefactoringFileSuggestions/works-for-suggesting-a-list-of-files,-excluding-node_modules-within-a-project.js @@ -103,14 +103,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/project/tsconfig.json: *new* - {} /project/a/file4.ts: *new* {} /project/b/file2.ts: *new* {} /project/d/e/file3.ts: *new* {} +/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /project: *new* diff --git a/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-insensitive-system.js b/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-insensitive-system.js index a9e9a8f5e22ac..46a5f6f22b11b 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-insensitive-system.js +++ b/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-insensitive-system.js @@ -140,10 +140,10 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: *new* {"pollingInterval":500} +/a/lib/lib.es6.d.ts: + {"pollingInterval":500} /a/node_modules: *new* {"pollingInterval":500} @@ -272,14 +272,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: *new* {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: *new* {"pollingInterval":500} /b/node_modules: *new* @@ -357,14 +357,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -412,14 +412,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -469,14 +469,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -526,14 +526,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -583,14 +583,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -706,10 +706,10 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} +/a/lib/lib.es6.d.ts: + {"pollingInterval":500} /a/node_modules: {"pollingInterval":500} @@ -860,14 +860,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: *new* {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: *new* {"pollingInterval":500} /b/node_modules: *new* @@ -945,14 +945,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -1000,14 +1000,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -1057,14 +1057,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -1114,14 +1114,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -1171,14 +1171,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -1321,10 +1321,10 @@ After request PolledWatches:: /a/bower_components: {"pollingInterval":500} -/a/node_modules: - {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: *new* {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.es6.d.ts: @@ -1477,12 +1477,12 @@ After request PolledWatches:: /a/bower_components: {"pollingInterval":500} -/a/node_modules: - {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: *new* {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: *new* {"pollingInterval":500} /b/node_modules: *new* @@ -1562,12 +1562,12 @@ After request PolledWatches:: /a/bower_components: {"pollingInterval":500} -/a/node_modules: - {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -1617,12 +1617,12 @@ After request PolledWatches:: /a/bower_components: {"pollingInterval":500} -/a/node_modules: - {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -1674,12 +1674,12 @@ After request PolledWatches:: /a/bower_components: {"pollingInterval":500} -/a/node_modules: - {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -1731,12 +1731,12 @@ After request PolledWatches:: /a/bower_components: {"pollingInterval":500} -/a/node_modules: - {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -1788,12 +1788,12 @@ After request PolledWatches:: /a/bower_components: {"pollingInterval":500} -/a/node_modules: - {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -1911,10 +1911,10 @@ After request PolledWatches:: /a/bower_components: {"pollingInterval":500} -/a/node_modules: - {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} PolledWatches *deleted*:: /a/lib/lib.esnext.full.d.ts: @@ -2065,12 +2065,12 @@ After request PolledWatches:: /a/bower_components: {"pollingInterval":500} -/a/node_modules: - {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: *new* {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: *new* {"pollingInterval":500} /b/node_modules: *new* @@ -2150,12 +2150,12 @@ After request PolledWatches:: /a/bower_components: {"pollingInterval":500} -/a/node_modules: - {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -2205,12 +2205,12 @@ After request PolledWatches:: /a/bower_components: {"pollingInterval":500} -/a/node_modules: - {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -2262,12 +2262,12 @@ After request PolledWatches:: /a/bower_components: {"pollingInterval":500} -/a/node_modules: - {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -2319,12 +2319,12 @@ After request PolledWatches:: /a/bower_components: {"pollingInterval":500} -/a/node_modules: - {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -2376,12 +2376,12 @@ After request PolledWatches:: /a/bower_components: {"pollingInterval":500} -/a/node_modules: - {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: diff --git a/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-sensitive-system.js b/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-sensitive-system.js index d87082174c05e..490da24a08efa 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-sensitive-system.js +++ b/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-sensitive-system.js @@ -140,10 +140,10 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: *new* {"pollingInterval":500} +/a/lib/lib.es6.d.ts: + {"pollingInterval":500} /a/node_modules: *new* {"pollingInterval":500} @@ -272,14 +272,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: *new* {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: *new* {"pollingInterval":500} /b/node_modules: *new* @@ -357,14 +357,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -412,14 +412,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -469,14 +469,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -487,10 +487,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/file1.ts: - {} /A/file2.ts: *new* {} +/a/file1.ts: + {} Before request @@ -526,14 +526,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -544,10 +544,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/file1.ts: - {} /A/file2.ts: {} +/a/file1.ts: + {} /b/file2.ts: *new* {} @@ -583,14 +583,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -601,10 +601,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/file1.ts: - {} /A/file2.ts: {} +/a/file1.ts: + {} /b/file2.ts: {} /c/file3.ts: *new* @@ -706,10 +706,10 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} +/a/lib/lib.es6.d.ts: + {"pollingInterval":500} /a/node_modules: {"pollingInterval":500} @@ -726,10 +726,10 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches *deleted*:: -/a/file1.ts: - {} /A/file2.ts: {} +/a/file1.ts: + {} /b/file2.ts: {} /c/file3.ts: @@ -800,17 +800,17 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: +/A/bower_components: *new* + {"pollingInterval":500} +/A/node_modules: *new* {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: *new* {"pollingInterval":500} -/A/bower_components: *new* - {"pollingInterval":500} -/A/node_modules: *new* +/a/node_modules: {"pollingInterval":500} Before request @@ -884,17 +884,17 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: +/A/bower_components: + {"pollingInterval":500} +/A/node_modules: {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} -/A/bower_components: - {"pollingInterval":500} -/A/node_modules: +/a/node_modules: {"pollingInterval":500} /b/bower_components: *new* {"pollingInterval":500} @@ -977,17 +977,17 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: +/A/bower_components: + {"pollingInterval":500} +/A/node_modules: {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} -/A/bower_components: - {"pollingInterval":500} -/A/node_modules: +/a/node_modules: {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} @@ -1040,17 +1040,17 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: +/A/bower_components: + {"pollingInterval":500} +/A/node_modules: {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} -/A/bower_components: - {"pollingInterval":500} -/A/node_modules: +/a/node_modules: {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} @@ -1105,17 +1105,17 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: +/A/bower_components: + {"pollingInterval":500} +/A/node_modules: {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} -/A/bower_components: - {"pollingInterval":500} -/A/node_modules: +/a/node_modules: {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} @@ -1127,10 +1127,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/file1.ts: - {} /A/file2.ts: *new* {} +/a/file1.ts: + {} Before request @@ -1170,17 +1170,17 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: +/A/bower_components: + {"pollingInterval":500} +/A/node_modules: {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} -/A/bower_components: - {"pollingInterval":500} -/A/node_modules: +/a/node_modules: {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} @@ -1192,10 +1192,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/file1.ts: - {} /A/file2.ts: {} +/a/file1.ts: + {} /b/file2.ts: *new* {} @@ -1235,17 +1235,17 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: +/A/bower_components: + {"pollingInterval":500} +/A/node_modules: {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} -/A/bower_components: - {"pollingInterval":500} -/A/node_modules: +/a/node_modules: {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} @@ -1257,10 +1257,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/file1.ts: - {} /A/file2.ts: {} +/a/file1.ts: + {} /b/file2.ts: {} /c/file3.ts: *new* @@ -1396,20 +1396,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} +/a/lib/lib.es6.d.ts: + {"pollingInterval":500} /a/node_modules: {"pollingInterval":500} PolledWatches *deleted*:: -/a/lib/lib.esnext.full.d.ts: - {"pollingInterval":500} /A/bower_components: {"pollingInterval":500} /A/node_modules: {"pollingInterval":500} +/a/lib/lib.esnext.full.d.ts: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -1420,10 +1420,10 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches *deleted*:: -/a/file1.ts: - {} /A/file2.ts: {} +/a/file1.ts: + {} /b/file2.ts: {} /c/file3.ts: @@ -1554,14 +1554,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: *new* {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: *new* {"pollingInterval":500} /b/node_modules: *new* @@ -1639,14 +1639,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -1694,14 +1694,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -1751,14 +1751,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -1769,10 +1769,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/file1.ts: - {} /A/file2.ts: *new* {} +/a/file1.ts: + {} Before request @@ -1808,14 +1808,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -1826,10 +1826,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/file1.ts: - {} /A/file2.ts: {} +/a/file1.ts: + {} /b/file2.ts: *new* {} @@ -1865,14 +1865,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -1883,10 +1883,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/file1.ts: - {} /A/file2.ts: {} +/a/file1.ts: + {} /b/file2.ts: {} /c/file3.ts: *new* @@ -1988,10 +1988,10 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} +/a/lib/lib.es6.d.ts: + {"pollingInterval":500} /a/node_modules: {"pollingInterval":500} @@ -2008,10 +2008,10 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches *deleted*:: -/a/file1.ts: - {} /A/file2.ts: {} +/a/file1.ts: + {} /b/file2.ts: {} /c/file3.ts: @@ -2082,17 +2082,17 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: +/A/bower_components: *new* {"pollingInterval":500} -/a/bower_components: +/A/node_modules: *new* {"pollingInterval":500} -/a/node_modules: +/a/bower_components: {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: *new* {"pollingInterval":500} -/A/bower_components: *new* +/a/lib/lib.es6.d.ts: {"pollingInterval":500} -/A/node_modules: *new* +/a/node_modules: {"pollingInterval":500} Before request @@ -2166,20 +2166,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: +/A/bower_components: {"pollingInterval":500} -/a/bower_components: +/A/node_modules: {"pollingInterval":500} -/a/node_modules: +/a/bower_components: {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} -/A/bower_components: - {"pollingInterval":500} -/A/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: *new* {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: *new* {"pollingInterval":500} /b/node_modules: *new* @@ -2261,20 +2261,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: +/A/bower_components: {"pollingInterval":500} -/a/bower_components: +/A/node_modules: {"pollingInterval":500} -/a/node_modules: +/a/bower_components: {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} -/A/bower_components: - {"pollingInterval":500} -/A/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -2326,20 +2326,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: +/A/bower_components: {"pollingInterval":500} -/a/bower_components: +/A/node_modules: {"pollingInterval":500} -/a/node_modules: +/a/bower_components: {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} -/A/bower_components: - {"pollingInterval":500} -/A/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -2393,20 +2393,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: +/A/bower_components: {"pollingInterval":500} -/a/bower_components: +/A/node_modules: {"pollingInterval":500} -/a/node_modules: +/a/bower_components: {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} -/A/bower_components: - {"pollingInterval":500} -/A/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -2417,10 +2417,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/file1.ts: - {} /A/file2.ts: *new* {} +/a/file1.ts: + {} Before request @@ -2460,20 +2460,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: +/A/bower_components: {"pollingInterval":500} -/a/bower_components: +/A/node_modules: {"pollingInterval":500} -/a/node_modules: +/a/bower_components: {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} -/A/bower_components: - {"pollingInterval":500} -/A/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -2484,10 +2484,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/file1.ts: - {} /A/file2.ts: {} +/a/file1.ts: + {} /b/file2.ts: *new* {} @@ -2527,20 +2527,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es6.d.ts: +/A/bower_components: {"pollingInterval":500} -/a/bower_components: +/A/node_modules: {"pollingInterval":500} -/a/node_modules: +/a/bower_components: {"pollingInterval":500} /a/lib/lib.es2017.full.d.ts: {"pollingInterval":500} -/A/bower_components: - {"pollingInterval":500} -/A/node_modules: +/a/lib/lib.es6.d.ts: {"pollingInterval":500} /a/lib/lib.esnext.full.d.ts: {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: @@ -2551,10 +2551,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/file1.ts: - {} /A/file2.ts: {} +/a/file1.ts: + {} /b/file2.ts: {} /c/file3.ts: *new* diff --git a/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root.js b/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root.js index 3d634bcae4019..b76b239fec406 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root.js +++ b/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root.js @@ -140,10 +140,10 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.esnext.full.d.ts: - {"pollingInterval":500} /a/bower_components: *new* {"pollingInterval":500} +/a/lib/lib.esnext.full.d.ts: + {"pollingInterval":500} /a/node_modules: *new* {"pollingInterval":500} @@ -272,14 +272,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.esnext.full.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: - {"pollingInterval":500} /a/lib/lib.es6.d.ts: *new* {"pollingInterval":500} +/a/lib/lib.esnext.full.d.ts: + {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: *new* {"pollingInterval":500} /b/node_modules: *new* @@ -357,14 +357,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.esnext.full.d.ts: - {"pollingInterval":500} /a/bower_components: {"pollingInterval":500} -/a/node_modules: - {"pollingInterval":500} /a/lib/lib.es6.d.ts: {"pollingInterval":500} +/a/lib/lib.esnext.full.d.ts: + {"pollingInterval":500} +/a/node_modules: + {"pollingInterval":500} /b/bower_components: {"pollingInterval":500} /b/node_modules: diff --git a/tests/baselines/reference/tsserver/inferredProjects/should-still-retain-configured-project-created-while-opening-the-file.js b/tests/baselines/reference/tsserver/inferredProjects/should-still-retain-configured-project-created-while-opening-the-file.js index a350f6e885776..670c41435d893 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/should-still-retain-configured-project-created-while-opening-the-file.js +++ b/tests/baselines/reference/tsserver/inferredProjects/should-still-retain-configured-project-created-while-opening-the-file.js @@ -92,19 +92,19 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- TI:: Creating typing installer PolledWatches:: +/user/username/projects/myproject/jsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/jsconfig.json: *new* - {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -166,23 +166,23 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/bower_components: *new* {"pollingInterval":500} /user/username/projects/myproject/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/bower_components: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules: *new* {"pollingInterval":500} +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/app.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: @@ -218,28 +218,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/bower_components: {"pollingInterval":500} /user/username/projects/myproject/node_modules: {"pollingInterval":500} +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/jsconfig.json: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/app.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/jsfile1.js: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -305,23 +305,23 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/bower_components: {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} /user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} +/user/username/projects/myproject/node_modules: + {"pollingInterval":500} +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/app.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatches *deleted*:: @@ -461,26 +461,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/bower_components: {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} /user/username/projects/myproject/jsconfig.json: {"pollingInterval":2000} +/user/username/projects/myproject/node_modules: + {"pollingInterval":500} +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/tsconfig.json: {} FsWatches *deleted*:: -/user/username/projects/myproject/app.ts: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/app.ts: + {} FsWatchesRecursive *deleted*:: /user/username/projects/myproject: diff --git a/tests/baselines/reference/tsserver/inferredProjects/should-support-files-without-extensions.js b/tests/baselines/reference/tsserver/inferredProjects/should-support-files-without-extensions.js index 5ff13e2ce5477..ae364ca6b5a19 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/should-support-files-without-extensions.js +++ b/tests/baselines/reference/tsserver/inferredProjects/should-support-files-without-extensions.js @@ -107,9 +107,9 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/bower_components: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} /a/node_modules: *new* {"pollingInterval":500} diff --git a/tests/baselines/reference/tsserver/inferredProjects/should-use-only-one-inferred-project-if-useOneInferredProject-is-set.js b/tests/baselines/reference/tsserver/inferredProjects/should-use-only-one-inferred-project-if-useOneInferredProject-is-set.js index bdc9d8bd72417..8ec8c7ec33de1 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/should-use-only-one-inferred-project-if-useOneInferredProject-is-set.js +++ b/tests/baselines/reference/tsserver/inferredProjects/should-use-only-one-inferred-project-if-useOneInferredProject-is-set.js @@ -147,21 +147,21 @@ Before running Timeout callback:: count: 2 PolledWatches:: /user/username/projects/myproject/a/b/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/a/tsconfig.json: *new* +/user/username/projects/myproject/a/c/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/a/jsconfig.json: *new* +/user/username/projects/myproject/a/c/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: *new* +/user/username/projects/myproject/a/d/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: *new* +/user/username/projects/myproject/a/d/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/a/c/tsconfig.json: *new* +/user/username/projects/myproject/a/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/a/c/jsconfig.json: *new* +/user/username/projects/myproject/a/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/a/d/tsconfig.json: *new* +/user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/a/d/jsconfig.json: *new* +/user/username/projects/myproject/tsconfig.json: *new* {"pollingInterval":2000} FsWatches:: @@ -255,30 +255,30 @@ Info seq [hh:mm:ss:mss] Projects: /dev/null/inferredProject1* After running Timeout callback:: count: 0 PolledWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/a/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: +/a/lib/lib.es6.d.ts: *new* + {"pollingInterval":500} +/user/username/projects/myproject/a/b/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/myproject/a/c/jsconfig.json: {"pollingInterval":2000} /user/username/projects/myproject/a/c/tsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/a/c/jsconfig.json: +/user/username/projects/myproject/a/d/jsconfig.json: {"pollingInterval":2000} /user/username/projects/myproject/a/d/tsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/a/d/jsconfig.json: +/user/username/projects/myproject/a/jsconfig.json: {"pollingInterval":2000} -/a/lib/lib.es6.d.ts: *new* - {"pollingInterval":500} -/user/username/projects/myproject/a/b/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/a/tsconfig.json: + {"pollingInterval":2000} +/user/username/projects/myproject/jsconfig.json: + {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/tsconfig.json: + {"pollingInterval":2000} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} diff --git a/tests/baselines/reference/tsserver/inlayHints/with-updateOpen-request-does-not-corrupt-documents.js b/tests/baselines/reference/tsserver/inlayHints/with-updateOpen-request-does-not-corrupt-documents.js index 7cc5ca8e58f0d..a5fab562b50bc 100644 --- a/tests/baselines/reference/tsserver/inlayHints/with-updateOpen-request-does-not-corrupt-documents.js +++ b/tests/baselines/reference/tsserver/inlayHints/with-updateOpen-request-does-not-corrupt-documents.js @@ -90,12 +90,12 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/commonfile1.ts: *new* {} /a/b/commonfile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tsserver/libraryResolution/with-config-with-redirection.js b/tests/baselines/reference/tsserver/libraryResolution/with-config-with-redirection.js index c4d4fff795d24..794b9ff5064d8 100644 --- a/tests/baselines/reference/tsserver/libraryResolution/with-config-with-redirection.js +++ b/tests/baselines/reference/tsserver/libraryResolution/with-config-with-redirection.js @@ -309,24 +309,24 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: *new* - {} /home/src/projects/project1/core.d.ts: *new* {} /home/src/projects/project1/file.ts: *new* {} /home/src/projects/project1/file2.ts: *new* {} -/home/src/projects/project1/utils.d.ts: *new* +/home/src/projects/project1/tsconfig.json: *new* {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: *new* {} +/home/src/projects/project1/utils.d.ts: *new* + {} FsWatchesRecursive:: -/home/src/projects/project1: *new* - {} /home/src/projects/node_modules: *new* {} +/home/src/projects/project1: *new* + {} /home/src/projects/project1/typeroot1: *new* {} @@ -445,7 +445,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: +/home/src/lib/lib.dom.d.ts: *new* {} /home/src/projects/project1/core.d.ts: {} @@ -453,18 +453,18 @@ FsWatches:: {} /home/src/projects/project1/file2.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/lib/lib.dom.d.ts: *new* +/home/src/projects/project1/utils.d.ts: {} FsWatchesRecursive:: -/home/src/projects/project1: - {} /home/src/projects/node_modules: {} +/home/src/projects/project1: + {} /home/src/projects/project1/typeroot1: {} @@ -538,17 +538,17 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: +/home/src/lib/lib.dom.d.ts: {} /home/src/projects/project1/file.ts: {} /home/src/projects/project1/file2.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/lib/lib.dom.d.ts: +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -556,10 +556,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/home/src/projects/project1: - {} /home/src/projects/node_modules: {} +/home/src/projects/project1: + {} /home/src/projects/project1/typeroot1: {} @@ -811,24 +811,24 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: +/home/src/lib/lib.dom.d.ts: {} /home/src/projects/project1/file.ts: {} /home/src/projects/project1/file2.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/lib/lib.dom.d.ts: +/home/src/projects/project1/utils.d.ts: {} FsWatchesRecursive:: -/home/src/projects/project1: - {} /home/src/projects/node_modules: {} +/home/src/projects/project1: + {} /home/src/projects/project1/typeroot1: {} @@ -984,24 +984,24 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: +/home/src/lib/lib.dom.d.ts: {} /home/src/projects/project1/file.ts: {} /home/src/projects/project1/file2.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/lib/lib.dom.d.ts: +/home/src/projects/project1/utils.d.ts: {} FsWatchesRecursive:: -/home/src/projects/project1: - {} /home/src/projects/node_modules: {} +/home/src/projects/project1: + {} /home/src/projects/project1/typeroot1: {} @@ -1117,26 +1117,26 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: +/home/src/lib/lib.dom.d.ts: + {} +/home/src/lib/lib.webworker.d.ts: *new* {} /home/src/projects/project1/file.ts: {} /home/src/projects/project1/file2.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/projects/project1/tsconfig.json: {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/lib/lib.dom.d.ts: - {} -/home/src/lib/lib.webworker.d.ts: *new* +/home/src/projects/project1/utils.d.ts: {} FsWatchesRecursive:: -/home/src/projects/project1: - {} /home/src/projects/node_modules: {} +/home/src/projects/project1: + {} /home/src/projects/project1/typeroot1: {} diff --git a/tests/baselines/reference/tsserver/libraryResolution/with-config.js b/tests/baselines/reference/tsserver/libraryResolution/with-config.js index 8654c63b8b869..42f04c994ce7d 100644 --- a/tests/baselines/reference/tsserver/libraryResolution/with-config.js +++ b/tests/baselines/reference/tsserver/libraryResolution/with-config.js @@ -312,7 +312,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: *new* +/home/src/lib/lib.dom.d.ts: *new* + {} +/home/src/lib/lib.es5.d.ts: *new* + {} +/home/src/lib/lib.scripthost.d.ts: *new* + {} +/home/src/lib/lib.webworker.d.ts: *new* {} /home/src/projects/project1/core.d.ts: *new* {} @@ -320,24 +326,18 @@ FsWatches:: {} /home/src/projects/project1/file2.ts: *new* {} -/home/src/projects/project1/utils.d.ts: *new* +/home/src/projects/project1/tsconfig.json: *new* {} /home/src/projects/project1/typeroot1/sometype/index.d.ts: *new* {} -/home/src/lib/lib.webworker.d.ts: *new* - {} -/home/src/lib/lib.scripthost.d.ts: *new* - {} -/home/src/lib/lib.es5.d.ts: *new* - {} -/home/src/lib/lib.dom.d.ts: *new* +/home/src/projects/project1/utils.d.ts: *new* {} FsWatchesRecursive:: -/home/src/projects/project1: *new* - {} /home/src/projects/node_modules: *new* {} +/home/src/projects/project1: *new* + {} /home/src/projects/project1/typeroot1: *new* {} @@ -514,23 +514,23 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: +/home/src/lib/lib.dom.d.ts: {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.es5.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/lib/lib.scripthost.d.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/lib/lib.webworker.d.ts: {} -/home/src/projects/project1/typeroot1/sometype/index.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/lib/lib.webworker.d.ts: +/home/src/projects/project1/file2.ts: {} -/home/src/lib/lib.scripthost.d.ts: +/home/src/projects/project1/tsconfig.json: {} -/home/src/lib/lib.es5.d.ts: +/home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/lib/lib.dom.d.ts: +/home/src/projects/project1/utils.d.ts: {} FsWatches *deleted*:: @@ -538,10 +538,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/home/src/projects/project1: - {} /home/src/projects/node_modules: {} +/home/src/projects/project1: + {} /home/src/projects/project1/typeroot1: {} @@ -804,30 +804,30 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: +/home/src/lib/lib.dom.d.ts: {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.es5.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/lib/lib.scripthost.d.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/lib/lib.webworker.d.ts: {} -/home/src/projects/project1/typeroot1/sometype/index.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/lib/lib.webworker.d.ts: +/home/src/projects/project1/file2.ts: {} -/home/src/lib/lib.scripthost.d.ts: +/home/src/projects/project1/tsconfig.json: {} -/home/src/lib/lib.es5.d.ts: +/home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/lib/lib.dom.d.ts: +/home/src/projects/project1/utils.d.ts: {} FsWatchesRecursive:: -/home/src/projects/project1: - {} /home/src/projects/node_modules: {} +/home/src/projects/project1: + {} /home/src/projects/project1/typeroot1: {} @@ -950,30 +950,30 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project1/tsconfig.json: +/home/src/lib/lib.dom.d.ts: {} -/home/src/projects/project1/file.ts: +/home/src/lib/lib.es5.d.ts: {} -/home/src/projects/project1/file2.ts: +/home/src/lib/lib.scripthost.d.ts: {} -/home/src/projects/project1/utils.d.ts: +/home/src/lib/lib.webworker.d.ts: {} -/home/src/projects/project1/typeroot1/sometype/index.d.ts: +/home/src/projects/project1/file.ts: {} -/home/src/lib/lib.webworker.d.ts: +/home/src/projects/project1/file2.ts: {} -/home/src/lib/lib.scripthost.d.ts: +/home/src/projects/project1/tsconfig.json: {} -/home/src/lib/lib.es5.d.ts: +/home/src/projects/project1/typeroot1/sometype/index.d.ts: {} -/home/src/lib/lib.dom.d.ts: +/home/src/projects/project1/utils.d.ts: {} FsWatchesRecursive:: -/home/src/projects/project1: - {} /home/src/projects/node_modules: {} +/home/src/projects/project1: + {} /home/src/projects/project1/typeroot1: {} diff --git a/tests/baselines/reference/tsserver/maxNodeModuleJsDepth/should-be-set-to-2-if-the-project-has-js-root-files.js b/tests/baselines/reference/tsserver/maxNodeModuleJsDepth/should-be-set-to-2-if-the-project-has-js-root-files.js index 0d00842803f2e..2982d33e80a55 100644 --- a/tests/baselines/reference/tsserver/maxNodeModuleJsDepth/should-be-set-to-2-if-the-project-has-js-root-files.js +++ b/tests/baselines/reference/tsserver/maxNodeModuleJsDepth/should-be-set-to-2-if-the-project-has-js-root-files.js @@ -101,10 +101,10 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/bower_components: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} FsWatchesRecursive:: /a/b/node_modules: diff --git a/tests/baselines/reference/tsserver/maxNodeModuleJsDepth/should-return-to-normal-state-when-all-js-root-files-are-removed-from-project.js b/tests/baselines/reference/tsserver/maxNodeModuleJsDepth/should-return-to-normal-state-when-all-js-root-files-are-removed-from-project.js index 064f438f29284..cb7b4c81abb2f 100644 --- a/tests/baselines/reference/tsserver/maxNodeModuleJsDepth/should-return-to-normal-state-when-all-js-root-files-are-removed-from-project.js +++ b/tests/baselines/reference/tsserver/maxNodeModuleJsDepth/should-return-to-normal-state-when-all-js-root-files-are-removed-from-project.js @@ -137,9 +137,9 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/lib/lib.d.ts: - {} /a/file2.js: *new* {} +/a/lib/lib.d.ts: + {} maxNodeModuleJsDepth: undefined \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/moduleResolution/node10Result.js b/tests/baselines/reference/tsserver/moduleResolution/node10Result.js index 7545fb6333b17..15a3cbb7284a8 100644 --- a/tests/baselines/reference/tsserver/moduleResolution/node10Result.js +++ b/tests/baselines/reference/tsserver/moduleResolution/node10Result.js @@ -462,25 +462,25 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} /home/src/projects: *new* {} /home/src/projects/project: *new* {} -/home/src/projects/project/node_modules/foo/package.json: *new* +/home/src/projects/project/node_modules/@types/bar/package.json: *new* + {} +/home/src/projects/project/node_modules/@types/bar2/package.json: *new* {} /home/src/projects/project/node_modules/bar/package.json: *new* {} -/home/src/projects/project/node_modules/@types/bar/package.json: *new* +/home/src/projects/project/node_modules/bar2/package.json: *new* {} -/home/src/projects/project/node_modules/foo2/package.json: *new* +/home/src/projects/project/node_modules/foo/package.json: *new* {} -/home/src/projects/project/node_modules/bar2/package.json: *new* +/home/src/projects/project/node_modules/foo2/package.json: *new* {} -/home/src/projects/project/node_modules/@types/bar2/package.json: *new* +/home/src/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -1813,25 +1813,25 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /home/src/projects: {} /home/src/projects/project: {} -/home/src/projects/project/node_modules/foo/package.json: +/home/src/projects/project/node_modules/@types/bar/package.json: + {} +/home/src/projects/project/node_modules/@types/bar2/package.json: {} /home/src/projects/project/node_modules/bar/package.json: {} -/home/src/projects/project/node_modules/@types/bar/package.json: +/home/src/projects/project/node_modules/bar2/package.json: {} -/home/src/projects/project/node_modules/foo2/package.json: +/home/src/projects/project/node_modules/foo/package.json: {} -/home/src/projects/project/node_modules/bar2/package.json: +/home/src/projects/project/node_modules/foo2/package.json: {} -/home/src/projects/project/node_modules/@types/bar2/package.json: +/home/src/projects/project/tsconfig.json: {} FsWatchesRecursive:: @@ -2074,25 +2074,25 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/home/src/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /home/src/projects: {} /home/src/projects/project: {} -/home/src/projects/project/node_modules/foo/package.json: +/home/src/projects/project/node_modules/@types/bar/package.json: + {} +/home/src/projects/project/node_modules/@types/bar2/package.json: {} /home/src/projects/project/node_modules/bar/package.json: {} -/home/src/projects/project/node_modules/@types/bar/package.json: +/home/src/projects/project/node_modules/bar2/package.json: {} -/home/src/projects/project/node_modules/foo2/package.json: +/home/src/projects/project/node_modules/foo/package.json: {} -/home/src/projects/project/node_modules/bar2/package.json: +/home/src/projects/project/node_modules/foo2/package.json: {} -/home/src/projects/project/node_modules/@types/bar2/package.json: +/home/src/projects/project/tsconfig.json: {} FsWatchesRecursive:: 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 160f0dd789170..ac29f63d49a26 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 @@ -191,24 +191,24 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/src/package.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: *new* + {"pollingInterval":2000} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: *new* - {} -/user/username/projects/myproject/src/fileb.mts: *new* - {} /a/lib/lib.es2016.full.d.ts: *new* {} /user/username/projects/myproject/package.json: *new* {} +/user/username/projects/myproject/src/fileb.mts: *new* + {} +/user/username/projects/myproject/src/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/src: *new* @@ -626,26 +626,26 @@ After running Timeout callback:: count: 1 14: checkOne PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: + {"pollingInterval":2000} /user/username/projects/node_modules/@types: {"pollingInterval":500} /user/username/projects/package.json: *new* {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} /a/lib/lib.es2016.full.d.ts: {} /user/username/projects/myproject/package.json: {} +/user/username/projects/myproject/src/fileb.mts: + {} +/user/username/projects/myproject/src/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -822,12 +822,12 @@ After running Timeout callback:: count: 1 19: checkOne PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: + {"pollingInterval":2000} /user/username/projects/node_modules/@types: {"pollingInterval":500} @@ -836,14 +836,14 @@ PolledWatches *deleted*:: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} /a/lib/lib.es2016.full.d.ts: {} /user/username/projects/myproject/package.json: {} +/user/username/projects/myproject/src/fileb.mts: + {} +/user/username/projects/myproject/src/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -1020,26 +1020,26 @@ After running Timeout callback:: count: 1 24: checkOne PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: + {"pollingInterval":2000} /user/username/projects/node_modules/@types: {"pollingInterval":500} /user/username/projects/package.json: *new* {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} /a/lib/lib.es2016.full.d.ts: {} /user/username/projects/myproject/package.json: {} +/user/username/projects/myproject/src/fileb.mts: + {} +/user/username/projects/myproject/src/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: 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 5051c83c62ff8..c7bce1aadadad 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 @@ -191,24 +191,24 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/src/package.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: *new* + {"pollingInterval":2000} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: *new* - {} -/user/username/projects/myproject/src/fileb.mts: *new* - {} /a/lib/lib.es2016.full.d.ts: *new* {} /user/username/projects/myproject/package.json: *new* {} +/user/username/projects/myproject/src/fileb.mts: *new* + {} +/user/username/projects/myproject/src/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/src: *new* @@ -627,26 +627,26 @@ After running Timeout callback:: count: 1 14: checkOne PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: + {"pollingInterval":2000} /user/username/projects/node_modules/@types: {"pollingInterval":500} /user/username/projects/package.json: *new* {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} /a/lib/lib.es2016.full.d.ts: {} /user/username/projects/myproject/package.json: {} +/user/username/projects/myproject/src/fileb.mts: + {} +/user/username/projects/myproject/src/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -816,12 +816,12 @@ After running Timeout callback:: count: 1 19: checkOne PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: + {"pollingInterval":2000} /user/username/projects/node_modules/@types: {"pollingInterval":500} @@ -830,14 +830,14 @@ PolledWatches *deleted*:: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} /a/lib/lib.es2016.full.d.ts: {} /user/username/projects/myproject/package.json: {} +/user/username/projects/myproject/src/fileb.mts: + {} +/user/username/projects/myproject/src/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -999,26 +999,26 @@ After running Timeout callback:: count: 1 24: checkOne PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/src/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/src/package.json: + {"pollingInterval":2000} /user/username/projects/node_modules/@types: {"pollingInterval":500} /user/username/projects/package.json: *new* {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} /a/lib/lib.es2016.full.d.ts: {} /user/username/projects/myproject/package.json: {} +/user/username/projects/myproject/src/fileb.mts: + {} +/user/username/projects/myproject/src/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: diff --git a/tests/baselines/reference/tsserver/moduleSpecifierCache/caches-importability-within-a-file.js b/tests/baselines/reference/tsserver/moduleSpecifierCache/caches-importability-within-a-file.js index d077735e3b92f..e867192cf5802 100644 --- a/tests/baselines/reference/tsserver/moduleSpecifierCache/caches-importability-within-a-file.js +++ b/tests/baselines/reference/tsserver/moduleSpecifierCache/caches-importability-within-a-file.js @@ -119,7 +119,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* +/package.json: *new* {} /src/ambient.d.ts: *new* {} @@ -129,14 +129,14 @@ FsWatches:: {} /src/c.ts: *new* {} -/package.json: *new* +/tsconfig.json: *new* {} FsWatchesRecursive:: -/src: *new* - {} /node_modules: *new* {} +/src: *new* + {} Before request @@ -176,7 +176,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/package.json: {} /src/ambient.d.ts: {} @@ -184,7 +184,7 @@ FsWatches:: {} /src/c.ts: {} -/package.json: +/tsconfig.json: {} FsWatches *deleted*:: @@ -192,10 +192,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/src: - {} /node_modules: {} +/src: + {} Before request @@ -237,13 +237,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/package.json: {} /src/ambient.d.ts: {} /src/b-link.ts: {} -/package.json: +/tsconfig.json: {} FsWatches *deleted*:: @@ -251,10 +251,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/src: - {} /node_modules: {} +/src: + {} Before request diff --git a/tests/baselines/reference/tsserver/moduleSpecifierCache/caches-module-specifiers-within-a-file.js b/tests/baselines/reference/tsserver/moduleSpecifierCache/caches-module-specifiers-within-a-file.js index b8b5ecc108a13..f085b3f307d79 100644 --- a/tests/baselines/reference/tsserver/moduleSpecifierCache/caches-module-specifiers-within-a-file.js +++ b/tests/baselines/reference/tsserver/moduleSpecifierCache/caches-module-specifiers-within-a-file.js @@ -119,7 +119,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* +/package.json: *new* {} /src/ambient.d.ts: *new* {} @@ -129,14 +129,14 @@ FsWatches:: {} /src/c.ts: *new* {} -/package.json: *new* +/tsconfig.json: *new* {} FsWatchesRecursive:: -/src: *new* - {} /node_modules: *new* {} +/src: *new* + {} Before request @@ -176,7 +176,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/package.json: {} /src/ambient.d.ts: {} @@ -184,7 +184,7 @@ FsWatches:: {} /src/c.ts: {} -/package.json: +/tsconfig.json: {} FsWatches *deleted*:: @@ -192,10 +192,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/src: - {} /node_modules: {} +/src: + {} Before request @@ -237,13 +237,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/package.json: {} /src/ambient.d.ts: {} /src/b-link.ts: {} -/package.json: +/tsconfig.json: {} FsWatches *deleted*:: @@ -251,10 +251,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/src: - {} /node_modules: {} +/src: + {} Before request diff --git a/tests/baselines/reference/tsserver/moduleSpecifierCache/does-not-invalidate-the-cache-when-new-files-are-added.js b/tests/baselines/reference/tsserver/moduleSpecifierCache/does-not-invalidate-the-cache-when-new-files-are-added.js index 9330847907bef..a1034f68d6e6c 100644 --- a/tests/baselines/reference/tsserver/moduleSpecifierCache/does-not-invalidate-the-cache-when-new-files-are-added.js +++ b/tests/baselines/reference/tsserver/moduleSpecifierCache/does-not-invalidate-the-cache-when-new-files-are-added.js @@ -119,7 +119,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* +/package.json: *new* {} /src/ambient.d.ts: *new* {} @@ -129,14 +129,14 @@ FsWatches:: {} /src/c.ts: *new* {} -/package.json: *new* +/tsconfig.json: *new* {} FsWatchesRecursive:: -/src: *new* - {} /node_modules: *new* {} +/src: *new* + {} Before request @@ -176,7 +176,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/package.json: {} /src/ambient.d.ts: {} @@ -184,7 +184,7 @@ FsWatches:: {} /src/c.ts: {} -/package.json: +/tsconfig.json: {} FsWatches *deleted*:: @@ -192,10 +192,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/src: - {} /node_modules: {} +/src: + {} Before request @@ -237,13 +237,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/package.json: {} /src/ambient.d.ts: {} /src/b-link.ts: {} -/package.json: +/tsconfig.json: {} FsWatches *deleted*:: @@ -251,10 +251,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/src: - {} /node_modules: {} +/src: + {} Before request @@ -830,21 +830,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/package.json: + {} +/src/a2.ts: *new* {} /src/ambient.d.ts: {} /src/b-link.ts: {} -/package.json: - {} -/src/a2.ts: *new* +/tsconfig.json: {} FsWatchesRecursive:: -/src: - {} /node_modules: {} +/src: + {} Info seq [hh:mm:ss:mss] importability: false \ No newline at end of file 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 51a2a37573f9a..eabb0cee5521e 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 @@ -119,7 +119,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* +/package.json: *new* {} /src/ambient.d.ts: *new* {} @@ -129,14 +129,14 @@ FsWatches:: {} /src/c.ts: *new* {} -/package.json: *new* +/tsconfig.json: *new* {} FsWatchesRecursive:: -/src: *new* - {} /node_modules: *new* {} +/src: *new* + {} Before request @@ -176,7 +176,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/package.json: {} /src/ambient.d.ts: {} @@ -184,7 +184,7 @@ FsWatches:: {} /src/c.ts: {} -/package.json: +/tsconfig.json: {} FsWatches *deleted*:: @@ -192,10 +192,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/src: - {} /node_modules: {} +/src: + {} Before request @@ -237,13 +237,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/package.json: {} /src/ambient.d.ts: {} /src/b-link.ts: {} -/package.json: +/tsconfig.json: {} FsWatches *deleted*:: @@ -251,10 +251,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/src: - {} /node_modules: {} +/src: + {} Before request diff --git a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-local-packageJson-changes.js b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-local-packageJson-changes.js index 0c11d04829524..10ae627bd4150 100644 --- a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-local-packageJson-changes.js +++ b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-local-packageJson-changes.js @@ -119,7 +119,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* +/package.json: *new* {} /src/ambient.d.ts: *new* {} @@ -129,14 +129,14 @@ FsWatches:: {} /src/c.ts: *new* {} -/package.json: *new* +/tsconfig.json: *new* {} FsWatchesRecursive:: -/src: *new* - {} /node_modules: *new* {} +/src: *new* + {} Before request @@ -176,7 +176,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/package.json: {} /src/ambient.d.ts: {} @@ -184,7 +184,7 @@ FsWatches:: {} /src/c.ts: {} -/package.json: +/tsconfig.json: {} FsWatches *deleted*:: @@ -192,10 +192,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/src: - {} /node_modules: {} +/src: + {} Before request @@ -237,13 +237,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/package.json: {} /src/ambient.d.ts: {} /src/b-link.ts: {} -/package.json: +/tsconfig.json: {} FsWatches *deleted*:: @@ -251,10 +251,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/src: - {} /node_modules: {} +/src: + {} Before request diff --git a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-module-resolution-settings-change.js b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-module-resolution-settings-change.js index 94db04cae0670..06f6628bc38ed 100644 --- a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-module-resolution-settings-change.js +++ b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-module-resolution-settings-change.js @@ -119,7 +119,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* +/package.json: *new* {} /src/ambient.d.ts: *new* {} @@ -129,14 +129,14 @@ FsWatches:: {} /src/c.ts: *new* {} -/package.json: *new* +/tsconfig.json: *new* {} FsWatchesRecursive:: -/src: *new* - {} /node_modules: *new* {} +/src: *new* + {} Before request @@ -176,7 +176,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/package.json: {} /src/ambient.d.ts: {} @@ -184,7 +184,7 @@ FsWatches:: {} /src/c.ts: {} -/package.json: +/tsconfig.json: {} FsWatches *deleted*:: @@ -192,10 +192,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/src: - {} /node_modules: {} +/src: + {} Before request @@ -237,13 +237,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/package.json: {} /src/ambient.d.ts: {} /src/b-link.ts: {} -/package.json: +/tsconfig.json: {} FsWatches *deleted*:: @@ -251,10 +251,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/src: - {} /node_modules: {} +/src: + {} Before request diff --git a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-symlinks-are-added-or-removed.js b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-symlinks-are-added-or-removed.js index 2f1fe9708c6f7..253ce8aa42798 100644 --- a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-symlinks-are-added-or-removed.js +++ b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-symlinks-are-added-or-removed.js @@ -119,7 +119,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* +/package.json: *new* {} /src/ambient.d.ts: *new* {} @@ -129,14 +129,14 @@ FsWatches:: {} /src/c.ts: *new* {} -/package.json: *new* +/tsconfig.json: *new* {} FsWatchesRecursive:: -/src: *new* - {} /node_modules: *new* {} +/src: *new* + {} Before request @@ -176,7 +176,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/package.json: {} /src/ambient.d.ts: {} @@ -184,7 +184,7 @@ FsWatches:: {} /src/c.ts: {} -/package.json: +/tsconfig.json: {} FsWatches *deleted*:: @@ -192,10 +192,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/src: - {} /node_modules: {} +/src: + {} Before request @@ -237,13 +237,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/package.json: {} /src/ambient.d.ts: {} /src/b-link.ts: {} -/package.json: +/tsconfig.json: {} FsWatches *deleted*:: @@ -251,10 +251,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/src: - {} /node_modules: {} +/src: + {} Before request @@ -770,11 +770,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/package.json: {} /src/ambient.d.ts: {} -/package.json: +/tsconfig.json: {} FsWatches *deleted*:: @@ -782,10 +782,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/src: - {} /node_modules: {} +/src: + {} Info seq [hh:mm:ss:mss] Running: /tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /tsconfig.json diff --git a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-user-preferences-change.js b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-user-preferences-change.js index 5b9889ca049dc..47c7011a607ef 100644 --- a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-user-preferences-change.js +++ b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-user-preferences-change.js @@ -119,7 +119,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* +/package.json: *new* {} /src/ambient.d.ts: *new* {} @@ -129,14 +129,14 @@ FsWatches:: {} /src/c.ts: *new* {} -/package.json: *new* +/tsconfig.json: *new* {} FsWatchesRecursive:: -/src: *new* - {} /node_modules: *new* {} +/src: *new* + {} Before request @@ -176,7 +176,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/package.json: {} /src/ambient.d.ts: {} @@ -184,7 +184,7 @@ FsWatches:: {} /src/c.ts: {} -/package.json: +/tsconfig.json: {} FsWatches *deleted*:: @@ -192,10 +192,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/src: - {} /node_modules: {} +/src: + {} Before request @@ -237,13 +237,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/package.json: {} /src/ambient.d.ts: {} /src/b-link.ts: {} -/package.json: +/tsconfig.json: {} FsWatches *deleted*:: @@ -251,10 +251,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/src: - {} /node_modules: {} +/src: + {} Before request 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 c2ae53c5c37a3..90bc923eac5ab 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 @@ -202,11 +202,11 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/tsconfig.json: +/b/index.ts: *new* {} /b/tsconfig.json: *new* {} -/b/index.ts: *new* +/tsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/openfile/different-content-refreshes-sourceFile.js b/tests/baselines/reference/tsserver/openfile/different-content-refreshes-sourceFile.js index 8364c5f9c454b..ebd40a65ee8ee 100644 --- a/tests/baselines/reference/tsserver/openfile/different-content-refreshes-sourceFile.js +++ b/tests/baselines/reference/tsserver/openfile/different-content-refreshes-sourceFile.js @@ -81,11 +81,11 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /project/b.ts: *new* {} -/a/lib/lib.d.ts: *new* +/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -132,10 +132,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/project/tsconfig.json: + {} FsWatches *deleted*:: /project/b.ts: @@ -211,12 +211,12 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /project/b.ts: *new* {} +/project/tsconfig.json: + {} FsWatchesRecursive:: /project: diff --git a/tests/baselines/reference/tsserver/openfile/does-not-refresh-sourceFile.js b/tests/baselines/reference/tsserver/openfile/does-not-refresh-sourceFile.js index 2281b8d917ccf..206ec04820ec0 100644 --- a/tests/baselines/reference/tsserver/openfile/does-not-refresh-sourceFile.js +++ b/tests/baselines/reference/tsserver/openfile/does-not-refresh-sourceFile.js @@ -81,11 +81,11 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /project/b.ts: *new* {} -/a/lib/lib.d.ts: *new* +/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -122,10 +122,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/project/tsconfig.json: + {} FsWatches *deleted*:: /project/b.ts: @@ -201,12 +201,12 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /project/b.ts: *new* {} +/project/tsconfig.json: + {} FsWatchesRecursive:: /project: diff --git a/tests/baselines/reference/tsserver/openfile/edits-on-file-and-then-close-does-not-refresh-sourceFile-if-contents-match.js b/tests/baselines/reference/tsserver/openfile/edits-on-file-and-then-close-does-not-refresh-sourceFile-if-contents-match.js index c25ea62e6a7ab..01486132eb16c 100644 --- a/tests/baselines/reference/tsserver/openfile/edits-on-file-and-then-close-does-not-refresh-sourceFile-if-contents-match.js +++ b/tests/baselines/reference/tsserver/openfile/edits-on-file-and-then-close-does-not-refresh-sourceFile-if-contents-match.js @@ -81,11 +81,11 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /project/b.ts: *new* {} -/a/lib/lib.d.ts: *new* +/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -122,10 +122,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/project/tsconfig.json: + {} FsWatches *deleted*:: /project/b.ts: @@ -244,12 +244,12 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /project/b.ts: *new* {} +/project/tsconfig.json: + {} FsWatchesRecursive:: /project: diff --git a/tests/baselines/reference/tsserver/openfile/edits-on-file-and-then-close-refreshes-sourceFile.js b/tests/baselines/reference/tsserver/openfile/edits-on-file-and-then-close-refreshes-sourceFile.js index 407fe5439ae7d..0bf76a1a781b2 100644 --- a/tests/baselines/reference/tsserver/openfile/edits-on-file-and-then-close-refreshes-sourceFile.js +++ b/tests/baselines/reference/tsserver/openfile/edits-on-file-and-then-close-refreshes-sourceFile.js @@ -81,11 +81,11 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /project/b.ts: *new* {} -/a/lib/lib.d.ts: *new* +/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -122,10 +122,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/project/tsconfig.json: + {} FsWatches *deleted*:: /project/b.ts: @@ -241,12 +241,12 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /project/b.ts: *new* {} +/project/tsconfig.json: + {} FsWatchesRecursive:: /project: 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 841351e7e13e0..f6933c9ad3713 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 @@ -76,12 +76,12 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {"pollingInterval":2000} /user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/tsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} diff --git a/tests/baselines/reference/tsserver/packageJsonInfo/detects-new-package.json-files-that-are-added,-caches-them,-and-watches-them.js b/tests/baselines/reference/tsserver/packageJsonInfo/detects-new-package.json-files-that-are-added,-caches-them,-and-watches-them.js index 7e8aa67352294..b6a592c667121 100644 --- a/tests/baselines/reference/tsserver/packageJsonInfo/detects-new-package.json-files-that-are-added,-caches-them,-and-watches-them.js +++ b/tests/baselines/reference/tsserver/packageJsonInfo/detects-new-package.json-files-that-are-added,-caches-them,-and-watches-them.js @@ -106,10 +106,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /a/data/package.json: *new* {} +/tsconfig.json: + {} FsWatchesRecursive:: /: @@ -159,10 +159,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /a/data/package.json: {} +/tsconfig.json: + {} FsWatchesRecursive:: /: @@ -200,12 +200,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /a/data/package.json: {} /package.json: *new* {} +/tsconfig.json: + {} FsWatchesRecursive:: /: diff --git a/tests/baselines/reference/tsserver/packageJsonInfo/finds-multiple-package.json-files-when-present.js b/tests/baselines/reference/tsserver/packageJsonInfo/finds-multiple-package.json-files-when-present.js index 9f83f53fbc0c7..96414fb8952bd 100644 --- a/tests/baselines/reference/tsserver/packageJsonInfo/finds-multiple-package.json-files-when-present.js +++ b/tests/baselines/reference/tsserver/packageJsonInfo/finds-multiple-package.json-files-when-present.js @@ -122,10 +122,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /a/data/package.json: *new* {} +/tsconfig.json: + {} FsWatchesRecursive:: /: @@ -183,12 +183,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /a/data/package.json: {} /package.json: *new* {} +/tsconfig.json: + {} FsWatchesRecursive:: /: @@ -230,14 +230,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /a/data/package.json: {} /package.json: {} /src/package.json: *new* {} +/tsconfig.json: + {} FsWatchesRecursive:: /: diff --git a/tests/baselines/reference/tsserver/packageJsonInfo/finds-package.json-on-demand,-watches-for-deletion,-and-removes-them-from-cache.js b/tests/baselines/reference/tsserver/packageJsonInfo/finds-package.json-on-demand,-watches-for-deletion,-and-removes-them-from-cache.js index f82330897dd1e..fc19d798ee3df 100644 --- a/tests/baselines/reference/tsserver/packageJsonInfo/finds-package.json-on-demand,-watches-for-deletion,-and-removes-them-from-cache.js +++ b/tests/baselines/reference/tsserver/packageJsonInfo/finds-package.json-on-demand,-watches-for-deletion,-and-removes-them-from-cache.js @@ -122,10 +122,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /a/data/package.json: *new* {} +/tsconfig.json: + {} FsWatchesRecursive:: /: @@ -183,12 +183,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /a/data/package.json: {} /package.json: *new* {} +/tsconfig.json: + {} FsWatchesRecursive:: /: @@ -228,10 +228,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /a/data/package.json: {} +/tsconfig.json: + {} FsWatches *deleted*:: /package.json: diff --git a/tests/baselines/reference/tsserver/packageJsonInfo/handles-empty-package.json.js b/tests/baselines/reference/tsserver/packageJsonInfo/handles-empty-package.json.js index 7aaa61fd08ef7..2796e34c7f84f 100644 --- a/tests/baselines/reference/tsserver/packageJsonInfo/handles-empty-package.json.js +++ b/tests/baselines/reference/tsserver/packageJsonInfo/handles-empty-package.json.js @@ -109,10 +109,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /a/data/package.json: *new* {} +/tsconfig.json: + {} FsWatchesRecursive:: /: @@ -165,12 +165,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /a/data/package.json: {} /package.json: *new* {} +/tsconfig.json: + {} FsWatchesRecursive:: /: diff --git a/tests/baselines/reference/tsserver/packageJsonInfo/handles-errors-in-json-parsing-of-package.json.js b/tests/baselines/reference/tsserver/packageJsonInfo/handles-errors-in-json-parsing-of-package.json.js index 23d20c1b20b33..27bc19a32397f 100644 --- a/tests/baselines/reference/tsserver/packageJsonInfo/handles-errors-in-json-parsing-of-package.json.js +++ b/tests/baselines/reference/tsserver/packageJsonInfo/handles-errors-in-json-parsing-of-package.json.js @@ -109,10 +109,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /a/data/package.json: *new* {} +/tsconfig.json: + {} FsWatchesRecursive:: /: @@ -165,12 +165,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: - {} /a/data/package.json: {} /package.json: *new* {} +/tsconfig.json: + {} FsWatchesRecursive:: /: diff --git a/tests/baselines/reference/tsserver/plugins/With-global-plugins.js b/tests/baselines/reference/tsserver/plugins/With-global-plugins.js index f787f58c9d040..d004bb6dafff8 100644 --- a/tests/baselines/reference/tsserver/plugins/With-global-plugins.js +++ b/tests/baselines/reference/tsserver/plugins/With-global-plugins.js @@ -90,10 +90,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/plugins/With-local-plugins.js b/tests/baselines/reference/tsserver/plugins/With-local-plugins.js index c60f3ebec5a83..4c56513bd0122 100644 --- a/tests/baselines/reference/tsserver/plugins/With-local-plugins.js +++ b/tests/baselines/reference/tsserver/plugins/With-local-plugins.js @@ -105,10 +105,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/plugins/With-session-and-custom-protocol-message.js b/tests/baselines/reference/tsserver/plugins/With-session-and-custom-protocol-message.js index 09dca2259e7c5..4fca84fb405b5 100644 --- a/tests/baselines/reference/tsserver/plugins/With-session-and-custom-protocol-message.js +++ b/tests/baselines/reference/tsserver/plugins/With-session-and-custom-protocol-message.js @@ -83,10 +83,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* diff --git a/tests/baselines/reference/tsserver/plugins/getSupportedCodeFixes-can-be-proxied.js b/tests/baselines/reference/tsserver/plugins/getSupportedCodeFixes-can-be-proxied.js index 65e87a57bcd39..43673497c51c5 100644 --- a/tests/baselines/reference/tsserver/plugins/getSupportedCodeFixes-can-be-proxied.js +++ b/tests/baselines/reference/tsserver/plugins/getSupportedCodeFixes-can-be-proxied.js @@ -98,13 +98,13 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /b.ts: *new* {} /c.ts: *new* {} -/a/lib/lib.d.ts: *new* +/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -141,11 +141,11 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/tsconfig.json: +/a/lib/lib.d.ts: {} /c.ts: {} -/a/lib/lib.d.ts: +/tsconfig.json: {} FsWatches *deleted*:: @@ -188,10 +188,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/tsconfig.json: + {} FsWatches *deleted*:: /c.ts: diff --git a/tests/baselines/reference/tsserver/plugins/gets-external-files-with-config-file-reload.js b/tests/baselines/reference/tsserver/plugins/gets-external-files-with-config-file-reload.js index c55a88859761a..caded600ff4c5 100644 --- a/tests/baselines/reference/tsserver/plugins/gets-external-files-with-config-file-reload.js +++ b/tests/baselines/reference/tsserver/plugins/gets-external-files-with-config-file-reload.js @@ -88,18 +88,18 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/somefile.txt: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/somefile.txt: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject: *new* @@ -169,20 +169,20 @@ After running Timeout callback:: count: 0 PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/someotherfile.txt: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/somefile.txt: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 b1cc3f88ee6cb..c45fb6e86d4fc 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 @@ -196,10 +196,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/app.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} 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 224ac94fbac50..0a10984cbc0f8 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 @@ -169,10 +169,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/app.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tsserver/projectErrors/configured-projects---diagnostics-for-corrupted-config-1.js b/tests/baselines/reference/tsserver/projectErrors/configured-projects---diagnostics-for-corrupted-config-1.js index 836fc7aea1372..51e53eba4b226 100644 --- a/tests/baselines/reference/tsserver/projectErrors/configured-projects---diagnostics-for-corrupted-config-1.js +++ b/tests/baselines/reference/tsserver/projectErrors/configured-projects---diagnostics-for-corrupted-config-1.js @@ -67,10 +67,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/lib.ts: *new* {} +/a/b/tsconfig.json: *new* + {} Before request diff --git a/tests/baselines/reference/tsserver/projectErrors/configured-projects---diagnostics-for-corrupted-config-2.js b/tests/baselines/reference/tsserver/projectErrors/configured-projects---diagnostics-for-corrupted-config-2.js index 51e0b537e658d..89f73ce69fcfd 100644 --- a/tests/baselines/reference/tsserver/projectErrors/configured-projects---diagnostics-for-corrupted-config-2.js +++ b/tests/baselines/reference/tsserver/projectErrors/configured-projects---diagnostics-for-corrupted-config-2.js @@ -67,10 +67,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/lib.ts: *new* {} +/a/b/tsconfig.json: *new* + {} Before request diff --git a/tests/baselines/reference/tsserver/projectErrors/configured-projects---diagnostics-for-missing-files.js b/tests/baselines/reference/tsserver/projectErrors/configured-projects---diagnostics-for-missing-files.js index 7d54be350aa4b..34cb45f734f57 100644 --- a/tests/baselines/reference/tsserver/projectErrors/configured-projects---diagnostics-for-missing-files.js +++ b/tests/baselines/reference/tsserver/projectErrors/configured-projects---diagnostics-for-missing-files.js @@ -179,9 +179,9 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: +/a/b/applib.ts: *new* + {} /a/b/tsconfig.json: {} /a/lib/lib.d.ts: {} -/a/b/applib.ts: *new* - {} 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 3d5be8b76c2ac..5ed1a030f62b3 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 @@ -178,16 +178,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/users/username/projects/myproject/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: -/users/username/projects/myproject/src: *new* - {} /users/username/projects/myproject/node_modules: *new* {} +/users/username/projects/myproject/src: *new* + {} Before request diff --git a/tests/baselines/reference/tsserver/projectErrors/external-project---diagnostics-for-missing-files.js b/tests/baselines/reference/tsserver/projectErrors/external-project---diagnostics-for-missing-files.js index 27c83cf407b27..4ca28c4bfb32a 100644 --- a/tests/baselines/reference/tsserver/projectErrors/external-project---diagnostics-for-missing-files.js +++ b/tests/baselines/reference/tsserver/projectErrors/external-project---diagnostics-for-missing-files.js @@ -163,10 +163,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/lib/lib.d.ts: - {} /a/b/applib.ts: *new* {} +/a/lib/lib.d.ts: + {} Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /a/b/app.ts 0:: WatchInfo: /a/b/app.ts 500 undefined Project: /a/b/test.csproj WatchType: Missing file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /a/b/app.ts 500 undefined Project: /a/b/test.csproj WatchType: Missing file @@ -182,10 +182,10 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/a/lib/lib.d.ts: - {} /a/b/applib.ts: {} +/a/lib/lib.d.ts: + {} Info seq [hh:mm:ss:mss] request: { @@ -222,9 +222,9 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/lib/lib.d.ts: +/a/b/app.ts: *new* {} /a/b/applib.ts: {} -/a/b/app.ts: *new* +/a/lib/lib.d.ts: {} 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 d207f257994b8..cfc72c3b5136b 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 @@ -203,18 +203,18 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.d.ts: *new* - {"pollingInterval":500} /a/b/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} /a/b/projects/node_modules/@types: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: *new* + {"pollingInterval":500} FsWatches:: -/a/b/projects/myproject/tsconfig.json: *new* - {} /a/b/projects/myproject/foo/foo.ts: *new* {} +/a/b/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /a/b/projects/myproject: *new* @@ -325,12 +325,12 @@ declare namespace foo { interface Foo { get2(): number; getFoo(): string; } } //// [/a/b/projects/myproject/foo/foo.ts] deleted PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/projects/myproject/node_modules/@types: {"pollingInterval":500} /a/b/projects/node_modules/@types: {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} FsWatches:: /a/b/projects/myproject/tsconfig.json: @@ -393,18 +393,18 @@ After running Timeout callback:: count: 1 12: checkOne PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/projects/myproject/node_modules/@types: {"pollingInterval":500} /a/b/projects/node_modules/@types: {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} /a/b/projects/myproject/foo2/foo.ts: *new* {} +/a/b/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /a/b/projects/myproject: 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 e614a4725a5af..c1f9c989ed567 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 @@ -157,18 +157,18 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules: *new* {"pollingInterval":500} -/user/username/projects/node_modules: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject: *new* @@ -304,10 +304,10 @@ Timeout callback:: count: 3 Immedidate callback:: count: 0 PolledWatches:: -/user/username/projects/node_modules: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules: + {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} @@ -316,18 +316,18 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: {} -/user/username/projects/myproject/src: - {} /user/username/projects/myproject/node_modules: *new* {} +/user/username/projects/myproject/src: + {} Before request @@ -815,18 +815,18 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: {} -/user/username/projects/myproject/src: - {} /user/username/projects/myproject/node_modules: {} +/user/username/projects/myproject/src: + {} Before request 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 d436b965ff5f9..98794d34a4a15 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 @@ -157,18 +157,18 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules: *new* {"pollingInterval":500} -/user/username/projects/node_modules: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject: *new* @@ -303,10 +303,10 @@ Before running Timeout callback:: count: 3 8: *ensureProjectForOpenFiles* PolledWatches:: -/user/username/projects/node_modules: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules: + {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} @@ -315,18 +315,18 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: {} -/user/username/projects/myproject/src: - {} /user/username/projects/myproject/node_modules: *new* {} +/user/username/projects/myproject/src: + {} Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one @@ -847,18 +847,18 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: {} -/user/username/projects/myproject/src: - {} /user/username/projects/myproject/node_modules: {} +/user/username/projects/myproject/src: + {} Before request 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 437176c59a2e2..7a370ceafb172 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 @@ -64,20 +64,20 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- TI:: Creating typing installer PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: *new* +/user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} +/user/username/projects/myproject/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/src/client/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: *new* +/user/username/projects/myproject/src/client/tsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: *new* +/user/username/projects/myproject/src/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: *new* +/user/username/projects/myproject/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} @@ -138,26 +138,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: +/user/username/projects/myproject/bower_components: *new* + {"pollingInterval":500} +/user/username/projects/myproject/jsconfig.json: {"pollingInterval":2000} +/user/username/projects/myproject/node_modules: *new* + {"pollingInterval":500} +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/src/client/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: +/user/username/projects/myproject/src/client/tsconfig.json: {"pollingInterval":2000} /user/username/projects/myproject/src/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: +/user/username/projects/myproject/tsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/bower_components: *new* - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: *new* - {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -239,34 +239,34 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: +/user/username/projects/myproject/bower_components: + {"pollingInterval":500} +/user/username/projects/myproject/jsconfig.json: {"pollingInterval":2000} +/user/username/projects/myproject/node_modules: + {"pollingInterval":500} +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/src/client/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: +/user/username/projects/myproject/src/client/tsconfig.json: {"pollingInterval":2000} /user/username/projects/myproject/src/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: +/user/username/projects/myproject/test/backend/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} /user/username/projects/myproject/test/backend/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/test/backend/jsconfig.json: *new* +/user/username/projects/myproject/test/jsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/myproject/test/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/test/jsconfig.json: *new* +/user/username/projects/myproject/tsconfig.json: {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -432,36 +432,36 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: +/user/username/projects/myproject/bower_components: + {"pollingInterval":500} +/user/username/projects/myproject/jsconfig.json: {"pollingInterval":2000} +/user/username/projects/myproject/node_modules: + {"pollingInterval":500} +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/src/client/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: +/user/username/projects/myproject/src/client/tsconfig.json: {"pollingInterval":2000} /user/username/projects/myproject/src/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: +/user/username/projects/myproject/tsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/test/backend/tsconfig.json: - {"pollingInterval":2000} /user/username/projects/myproject/test/backend/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/test/tsconfig.json: +/user/username/projects/myproject/test/backend/tsconfig.json: {"pollingInterval":2000} /user/username/projects/myproject/test/jsconfig.json: {"pollingInterval":2000} +/user/username/projects/myproject/test/tsconfig.json: + {"pollingInterval":2000} FsWatches:: /a/lib/lib.d.ts: @@ -572,30 +572,30 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: +/user/username/projects/myproject/bower_components: + {"pollingInterval":500} +/user/username/projects/myproject/jsconfig.json: {"pollingInterval":2000} +/user/username/projects/myproject/node_modules: + {"pollingInterval":500} +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/src/client/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: +/user/username/projects/myproject/src/client/tsconfig.json: {"pollingInterval":2000} /user/username/projects/myproject/src/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: +/user/username/projects/myproject/src/server/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} /user/username/projects/myproject/src/server/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/server/jsconfig.json: *new* +/user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":2000} +/user/username/projects/myproject/tsconfig.json: + {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: 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 cceab56a7410a..063eb070fffed 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 @@ -174,13 +174,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src: *new* {} /user/username/projects/myproject/src/blabla.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: 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 364645d7e2acf..aaf3113ae9038 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 @@ -172,13 +172,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src: *new* {} /user/username/projects/myproject/src/blabla.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: 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 4392fd2b16e83..3d587f2d96d2c 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 @@ -72,10 +72,10 @@ After request PolledWatches:: /typings/@epic/core.d.ts: *new* {"pollingInterval":500} -/user/someuser/projects/somefolder/node_modules/@types: *new* - {"pollingInterval":500} /user/someuser/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/someuser/projects/somefolder/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: *new* 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 9ff561802c88d..e4d3e9f84cacb 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 @@ -84,10 +84,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject: *new* 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 4d7b60d00603e..7d92245ba3195 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 @@ -155,10 +155,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject: *new* 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 df027f58c0e0b..6b1913dfdfa82 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 @@ -155,10 +155,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject: *new* 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 5e52db35aeb93..1723c8a71980e 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 @@ -354,15 +354,15 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: *new* + {} /user/username/projects/myproject/SiblingClass/tsconfig.json: *new* {} -/user/username/projects/myproject/tsbase.json: *new* +/user/username/projects/myproject/buttonClass/Source.ts: *new* {} /user/username/projects/myproject/buttonClass/tsconfig.json: *new* {} -/user/username/projects/myproject/buttonClass/Source.ts: *new* - {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsbase.json: *new* {} Before request 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 a8fc70345a18c..f27335432e6bb 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request @@ -439,13 +439,13 @@ export declare function fn3(): void; PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: @@ -453,19 +453,19 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/usage: {} Before request 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 a751cc191d522..3db859cd9a96e 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request @@ -426,13 +426,13 @@ export declare function fn2(): void; PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: @@ -440,19 +440,19 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/usage: {} Before request 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 7a2e969e713b7..3fdc8ce850744 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request @@ -435,13 +435,13 @@ export declare function fn2(): void; PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: @@ -449,19 +449,19 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/usage: {} Before request 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 aacb00ab9a92e..852acc53970e3 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request @@ -426,13 +426,13 @@ export declare function fn2(): void; PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: @@ -440,19 +440,19 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/usage: {} Before request 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 863b433171e5f..e69ebbd04d0e7 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request @@ -397,13 +397,13 @@ export declare function fn3(): void; PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: @@ -411,19 +411,19 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/usage: {} Before request 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 1f189cb131a40..43937a9e203ce 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request @@ -386,13 +386,13 @@ export declare function fn2(): void; PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: @@ -400,19 +400,19 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/usage: {} Before request 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 c981221a5811a..5f1dabfceb70d 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request @@ -395,13 +395,13 @@ export declare function fn2(): void; PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: @@ -409,19 +409,19 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/usage: {} Before request 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 1d097de8d7a2e..7ebc47f9c4e0a 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request @@ -386,13 +386,13 @@ export declare function fn2(): void; PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: @@ -400,19 +400,19 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/usage: {} Before request 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 63505d7830a69..3b7ddc93d7e2c 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request @@ -303,13 +303,13 @@ export declare function fn2(): void; PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: @@ -317,19 +317,19 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/usage: {} Before request 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 b8087ecb9908b..46c738264c65e 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 ea740992ccce0..77d150c508a07 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 37b8ea7be351b..e70f44f327eca 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 c6423c4731e92..62574484f7070 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 56b32c5dbdecb..aa5779ca89572 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js index e618775c65845..f1956c4dbf24f 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request @@ -336,13 +336,13 @@ export declare function fn2(): void; PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: @@ -350,19 +350,19 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/usage: {} Before request 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 a8dfff5524091..579f4c609f83a 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 8809ef62f072b..f16d16c2e2d70 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 6725cd658755d..49ad6108d4071 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 2b955adb13381..49f44051661ee 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 b230e23addbb0..f339e5e2763c8 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 e67668d20bb2f..08bdda298b216 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 5c2143326b1f2..5db9ed20e4599 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 04f29d4fda6f8..8a126faf29185 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 70e44f6f8e22b..4b57b014573c5 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js index 1a613da9ab4c9..56dab2a503243 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -202,21 +202,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -224,10 +224,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 046b4c8d5fe5c..f290b4e9a285b 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 6a8544586fe23..0ce2f9c8bb051 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 b94556f5ebf08..b4d740b7b7834 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 61df24c37aaf8..6f8de10d9d0d9 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 6d247f5ab2efb..a3b68a9a1ea1d 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 3e527a903e2b6..28439937de7e2 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 d0f5bdf99c0c8..3773eccd8f515 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 03d183afa09a4..e6dda077c24f2 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 9e0392d247683..7627b8e46d615 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 4e1c5d60bf4c3..15ecd0db476b1 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 5a11812a4ddd9..a4b96073c6eb4 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 6e9595e0f481f..b0fc7985f6add 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 ef189d677b0f0..9af67efbea36a 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 6f7bbb32f81b6..1294408589088 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 291640bf89278..5c28b49317971 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 db9fdd0a81447..0328a35bfa585 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 e72524b4fe0ca..d07ea30b8aa5b 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 18dbcfb4566ca..dc048f56dca63 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 b1165b42a6ee3..5b94c1ed49169 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 45b836b957d76..9a08bbf702340 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 @@ -120,28 +120,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 1efe59d2773af..ed6e5d0b3bef2 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 @@ -128,28 +128,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 21f0dd1565553..9bb0526bc13bc 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 @@ -201,28 +201,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 5fc45d1fa6fee..62c46acb7c585 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 @@ -201,28 +201,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 661dc025918b8..ab0409fd00de7 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 @@ -128,28 +128,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -210,21 +210,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -232,10 +232,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 8b4c92a4f8edb..d710a867c0ba5 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 @@ -201,28 +201,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -357,21 +357,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -379,10 +379,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 43e9421ab1b4f..78b284733bd7d 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 @@ -201,28 +201,28 @@ After request PolledWatches:: /user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -357,21 +357,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -379,10 +379,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 7cdcec775900f..50cd06105f87c 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 @@ -120,28 +120,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 b34ded32404ea..d1ef4e6ee39e1 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 @@ -194,28 +194,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 3d712a345495c..a6c4487b9ed83 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 @@ -194,28 +194,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request 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 fe7af616636f4..bd89f9098fc65 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 @@ -120,28 +120,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -200,21 +200,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -222,10 +222,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 0099ca0f1603d..aa52b9bb0dc89 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 @@ -194,28 +194,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -348,21 +348,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -370,10 +370,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 8c5d0c23d6735..33379a427367e 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 @@ -194,28 +194,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/usage/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/usage/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/usage: *new* + {} Before request @@ -348,21 +348,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/usage/tsconfig.json: {} FsWatches *deleted*:: @@ -370,10 +370,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/usage: + {} Before request 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 5a7924d387a89..568ab062e9834 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 @@ -458,13 +458,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/container/lib/tsconfig.json: *new* +/user/username/projects/container/compositeexec/tsconfig.json: *new* {} /user/username/projects/container/lib/index.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/container/lib/tsconfig.json: *new* {} /user/username/projects/container/tsconfig.json: *new* {} @@ -532,21 +532,21 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/temp/tsconfig.json: *new* - {"pollingInterval":2000} /user/username/projects/temp/jsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/temp/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/temp/tsconfig.json: *new* + {"pollingInterval":2000} FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/container/lib/tsconfig.json: +/user/username/projects/container/compositeexec/tsconfig.json: {} /user/username/projects/container/lib/index.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/container/lib/tsconfig.json: {} /user/username/projects/container/tsconfig.json: {} @@ -742,36 +742,36 @@ After request PolledWatches:: /user/username/projects/container/compositeexec/node_modules/@types: {"pollingInterval":500} +/user/username/projects/container/exec/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/container/lib/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/container/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/temp/tsconfig.json: - {"pollingInterval":2000} /user/username/projects/temp/jsconfig.json: {"pollingInterval":2000} /user/username/projects/temp/node_modules/@types: {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: *new* - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: *new* - {"pollingInterval":500} +/user/username/projects/temp/tsconfig.json: + {"pollingInterval":2000} FsWatches:: +/a/lib/lib.d.ts: + {} /user/username/projects/container/compositeexec/tsconfig.json: {} -/user/username/projects/container/lib/tsconfig.json: +/user/username/projects/container/exec/index.ts: *new* + {} +/user/username/projects/container/exec/tsconfig.json: *new* {} /user/username/projects/container/lib/index.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/container/lib/tsconfig.json: {} /user/username/projects/container/tsconfig.json: {} -/user/username/projects/container/exec/tsconfig.json: *new* - {} -/user/username/projects/container/exec/index.ts: *new* - {} Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root @@ -804,38 +804,38 @@ Before request PolledWatches:: /user/username/projects/container/compositeexec/node_modules/@types: {"pollingInterval":500} +/user/username/projects/container/exec/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/container/lib/node_modules/@types: + {"pollingInterval":500} /user/username/projects/container/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} /user/username/projects/temp/node_modules/@types: {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/temp/tsconfig.json: - {"pollingInterval":2000} /user/username/projects/temp/jsconfig.json: {"pollingInterval":2000} +/user/username/projects/temp/tsconfig.json: + {"pollingInterval":2000} FsWatches:: +/a/lib/lib.d.ts: + {} /user/username/projects/container/compositeexec/tsconfig.json: {} -/user/username/projects/container/lib/tsconfig.json: +/user/username/projects/container/exec/index.ts: + {} +/user/username/projects/container/exec/tsconfig.json: {} /user/username/projects/container/lib/index.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/container/lib/tsconfig.json: {} /user/username/projects/container/tsconfig.json: {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} /user/username/projects/temp/temp.ts: *new* {} @@ -890,36 +890,36 @@ After request PolledWatches:: /user/username/projects/container/compositeexec/node_modules/@types: {"pollingInterval":500} +/user/username/projects/container/exec/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/container/lib/node_modules/@types: + {"pollingInterval":500} /user/username/projects/container/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} +/user/username/projects/temp/jsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/temp/node_modules/@types: {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} /user/username/projects/temp/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/temp/jsconfig.json: *new* - {"pollingInterval":2000} FsWatches:: +/a/lib/lib.d.ts: + {} /user/username/projects/container/compositeexec/tsconfig.json: {} -/user/username/projects/container/lib/tsconfig.json: +/user/username/projects/container/exec/index.ts: + {} +/user/username/projects/container/exec/tsconfig.json: {} /user/username/projects/container/lib/index.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/container/lib/tsconfig.json: {} /user/username/projects/container/tsconfig.json: {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} FsWatches *deleted*:: /user/username/projects/temp/temp.ts: @@ -978,39 +978,39 @@ Before request PolledWatches:: /user/username/projects/container/compositeexec/node_modules/@types: {"pollingInterval":500} +/user/username/projects/container/exec/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/container/lib/node_modules/@types: + {"pollingInterval":500} /user/username/projects/container/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} /user/username/projects/temp/node_modules/@types: {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/temp/tsconfig.json: - {"pollingInterval":2000} /user/username/projects/temp/jsconfig.json: {"pollingInterval":2000} +/user/username/projects/temp/tsconfig.json: + {"pollingInterval":2000} FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/lib/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/container/lib/index.ts: +/user/username/projects/container/compositeexec/index.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/container/compositeexec/tsconfig.json: {} -/user/username/projects/container/tsconfig.json: +/user/username/projects/container/exec/index.ts: {} /user/username/projects/container/exec/tsconfig.json: {} -/user/username/projects/container/exec/index.ts: +/user/username/projects/container/lib/index.ts: {} -/user/username/projects/container/compositeexec/index.ts: *new* +/user/username/projects/container/lib/tsconfig.json: + {} +/user/username/projects/container/tsconfig.json: {} /user/username/projects/temp/temp.ts: *new* {} @@ -1129,21 +1129,21 @@ After request PolledWatches:: /user/username/projects/node_modules/@types: {"pollingInterval":500} +/user/username/projects/temp/jsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/temp/node_modules/@types: {"pollingInterval":500} /user/username/projects/temp/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/temp/jsconfig.json: *new* - {"pollingInterval":2000} PolledWatches *deleted*:: /user/username/projects/container/compositeexec/node_modules/@types: {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: +/user/username/projects/container/exec/node_modules/@types: {"pollingInterval":500} /user/username/projects/container/lib/node_modules/@types: {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: +/user/username/projects/container/node_modules/@types: {"pollingInterval":500} FsWatches:: @@ -1151,19 +1151,19 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/lib/tsconfig.json: +/user/username/projects/container/compositeexec/index.ts: {} -/user/username/projects/container/lib/index.ts: +/user/username/projects/container/compositeexec/tsconfig.json: {} -/user/username/projects/container/tsconfig.json: +/user/username/projects/container/exec/index.ts: {} /user/username/projects/container/exec/tsconfig.json: {} -/user/username/projects/container/exec/index.ts: +/user/username/projects/container/lib/index.ts: {} -/user/username/projects/container/compositeexec/index.ts: +/user/username/projects/container/lib/tsconfig.json: + {} +/user/username/projects/container/tsconfig.json: {} /user/username/projects/temp/temp.ts: {} 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 bd2f796cd136a..dde43d7f92884 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 @@ -318,17 +318,17 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/app/src/program/node_modules: *new* - {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules: *new* - {"pollingInterval":500} /user/username/projects/myproject/app/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/src/program/node_modules/@types: *new* +/user/username/projects/myproject/app/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/myproject/app/src/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/app/src/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules/@types: *new* +/user/username/projects/myproject/app/src/program/node_modules: *new* + {"pollingInterval":500} +/user/username/projects/myproject/app/src/program/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} @@ -336,28 +336,28 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/app/src/program/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app/src/program/bar.ts: *new* {} -/user/username/projects/myproject/shared/src/library/tsconfig.json: *new* +/user/username/projects/myproject/app/src/program/tsconfig.json: *new* {} /user/username/projects/myproject/shared/bld/library/index.d.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} /user/username/projects/myproject/shared/package.json: *new* {} +/user/username/projects/myproject/shared/src/library/tsconfig.json: *new* + {} /user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/app/src/program: *new* {} -/user/username/projects/myproject/shared/src/library: *new* - {} /user/username/projects/myproject/node_modules: *new* {} +/user/username/projects/myproject/shared/src/library: *new* + {} Before request 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 d5ec6b414afd1..ac6f2d4953d07 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 @@ -317,17 +317,17 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/app/src/program/node_modules: *new* - {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules: *new* - {"pollingInterval":500} /user/username/projects/myproject/app/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/src/program/node_modules/@types: *new* +/user/username/projects/myproject/app/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/myproject/app/src/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/app/src/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules/@types: *new* +/user/username/projects/myproject/app/src/program/node_modules: *new* + {"pollingInterval":500} +/user/username/projects/myproject/app/src/program/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} @@ -335,17 +335,17 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/app/src/program/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app/src/program/bar.ts: *new* {} -/user/username/projects/myproject/shared/src/library/tsconfig.json: *new* +/user/username/projects/myproject/app/src/program/tsconfig.json: *new* {} -/user/username/projects/myproject/shared/src/library/index.ts: *new* +/user/username/projects/myproject/shared/package.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/shared/src/library/index.ts: *new* {} -/user/username/projects/myproject/shared/package.json: *new* +/user/username/projects/myproject/shared/src/library/tsconfig.json: *new* {} /user/username/projects/myproject/tsconfig.json: *new* {} @@ -353,10 +353,10 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/app/src/program: *new* {} -/user/username/projects/myproject/shared/src/library: *new* - {} /user/username/projects/myproject/node_modules: *new* {} +/user/username/projects/myproject/shared/src/library: *new* + {} Before request 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 e878b7591c4f7..85a7906f9a66a 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 @@ -148,17 +148,17 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/app/src/program/node_modules: *new* - {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules: *new* - {"pollingInterval":500} /user/username/projects/myproject/app/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/src/program/node_modules/@types: *new* +/user/username/projects/myproject/app/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/myproject/app/src/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/app/src/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules/@types: *new* +/user/username/projects/myproject/app/src/program/node_modules: *new* + {"pollingInterval":500} +/user/username/projects/myproject/app/src/program/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} @@ -166,17 +166,17 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/app/src/program/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/app/src/program/bar.ts: *new* {} -/user/username/projects/myproject/shared/src/library/tsconfig.json: *new* +/user/username/projects/myproject/app/src/program/tsconfig.json: *new* {} -/user/username/projects/myproject/shared/src/library/index.ts: *new* +/user/username/projects/myproject/shared/package.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/shared/src/library/index.ts: *new* {} -/user/username/projects/myproject/shared/package.json: *new* +/user/username/projects/myproject/shared/src/library/tsconfig.json: *new* {} /user/username/projects/myproject/tsconfig.json: *new* {} @@ -184,10 +184,10 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/app/src/program: *new* {} -/user/username/projects/myproject/shared/src/library: *new* - {} /user/username/projects/myproject/node_modules: *new* {} +/user/username/projects/myproject/shared/src/library: *new* + {} Before request 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 072bf7f871ebe..7b082efba130f 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 @@ -455,13 +455,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/container/lib/tsconfig.json: *new* +/user/username/projects/container/compositeexec/tsconfig.json: *new* {} /user/username/projects/container/lib/index.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/container/lib/tsconfig.json: *new* {} /user/username/projects/container/tsconfig.json: *new* {} @@ -657,27 +657,27 @@ After request PolledWatches:: /user/username/projects/container/compositeexec/node_modules/@types: {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/container/exec/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/container/lib/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: *new* +/user/username/projects/container/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: + {} /user/username/projects/container/compositeexec/tsconfig.json: {} -/user/username/projects/container/lib/tsconfig.json: +/user/username/projects/container/exec/index.ts: *new* + {} +/user/username/projects/container/exec/tsconfig.json: *new* {} /user/username/projects/container/lib/index.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/container/lib/tsconfig.json: {} /user/username/projects/container/tsconfig.json: {} -/user/username/projects/container/exec/tsconfig.json: *new* - {} -/user/username/projects/container/exec/index.ts: *new* - {} 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 8465d59dfa4dd..84c2996b86492 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 @@ -508,29 +508,29 @@ declare namespace container { PolledWatches:: /user/username/projects/container/compositeexec/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: *new* - {"pollingInterval":500} -/user/username/projects/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/container/exec/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/container/lib/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/container/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/container/compositeexec/index.ts: *new* {} -/user/username/projects/container/lib/tsconfig.json: *new* - {} -/user/username/projects/container/lib/index.ts: *new* +/user/username/projects/container/compositeexec/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/container/exec/index.ts: *new* {} /user/username/projects/container/exec/tsconfig.json: *new* {} -/user/username/projects/container/exec/index.ts: *new* +/user/username/projects/container/lib/index.ts: *new* + {} +/user/username/projects/container/lib/tsconfig.json: *new* {} /user/username/projects/container/tsconfig.json: *new* {} 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 dc66c30d8fb38..961188867afea 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 @@ -137,10 +137,10 @@ PolledWatches:: FsWatches:: /user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* - {} /user/username/projects/myproject/b/lib/index.d.ts: *new* {} +/user/username/projects/myproject/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/a: *new* @@ -213,23 +213,23 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/b/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: +/user/username/projects/myproject/b: *new* {} /user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/b: *new* +/user/username/projects/myproject/b/lib/index.d.ts: + {} +/user/username/projects/myproject/b/tsconfig.json: {} FsWatchesRecursive:: @@ -339,25 +339,25 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/b/lib/index.d.ts.map: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/b/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/lib/index.d.ts.map: *new* - {"pollingInterval":2000} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: +/user/username/projects/myproject/b: {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b/lib/index.d.ts: + {} +/user/username/projects/myproject/b/tsconfig.json: {} FsWatchesRecursive:: 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 a3b5bb54b4ae7..73d389faac12f 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 @@ -140,10 +140,10 @@ PolledWatches:: FsWatches:: /user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* - {} /user/username/projects/myproject/b/lib/index.d.ts: *new* {} +/user/username/projects/myproject/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/a: *new* @@ -216,23 +216,23 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/b/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: +/user/username/projects/myproject/b: *new* {} /user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/b: *new* +/user/username/projects/myproject/b/lib/index.d.ts: + {} +/user/username/projects/myproject/b/tsconfig.json: {} FsWatchesRecursive:: @@ -394,26 +394,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/b/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: +/user/username/projects/myproject/b: {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b/lib/index.d.ts: {} /user/username/projects/myproject/b/lib/index.d.ts.map: *new* {} +/user/username/projects/myproject/b/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/a: 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 c49239757a43b..d5b0b67ade086 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 @@ -137,10 +137,10 @@ PolledWatches:: FsWatches:: /user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* - {} /user/username/projects/myproject/b/index.ts: *new* {} +/user/username/projects/myproject/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/a: *new* @@ -212,21 +212,21 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/b/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b: *new* {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/b: *new* +/user/username/projects/myproject/b/tsconfig.json: {} FsWatchesRecursive:: 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 326bf70fe01c6..b2f41d3a292fe 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 @@ -140,10 +140,10 @@ PolledWatches:: FsWatches:: /user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* - {} /user/username/projects/myproject/b/index.ts: *new* {} +/user/username/projects/myproject/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/a: *new* @@ -215,21 +215,21 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/b/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b: *new* {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/b: *new* +/user/username/projects/myproject/b/tsconfig.json: {} FsWatchesRecursive:: 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 0aee896a81c4b..aec82c48bef6d 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 @@ -137,10 +137,10 @@ PolledWatches:: FsWatches:: /user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* - {} /user/username/projects/myproject/b/lib/index.d.ts: *new* {} +/user/username/projects/myproject/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/a: *new* @@ -213,23 +213,23 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/b/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: +/user/username/projects/myproject/b: *new* {} /user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/b: *new* +/user/username/projects/myproject/b/lib/index.d.ts: + {} +/user/username/projects/myproject/b/tsconfig.json: {} FsWatchesRecursive:: @@ -339,25 +339,25 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/b/lib/index.d.ts.map: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/b/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/lib/index.d.ts.map: *new* - {"pollingInterval":2000} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: +/user/username/projects/myproject/b: {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b/lib/index.d.ts: + {} +/user/username/projects/myproject/b/tsconfig.json: {} FsWatchesRecursive:: 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 c4f39ecc820b0..c32f98b671823 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 @@ -140,10 +140,10 @@ PolledWatches:: FsWatches:: /user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* - {} /user/username/projects/myproject/b/lib/index.d.ts: *new* {} +/user/username/projects/myproject/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/a: *new* @@ -216,23 +216,23 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/b/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: +/user/username/projects/myproject/b: *new* {} /user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/b: *new* +/user/username/projects/myproject/b/lib/index.d.ts: + {} +/user/username/projects/myproject/b/tsconfig.json: {} FsWatchesRecursive:: @@ -394,26 +394,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/b/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: +/user/username/projects/myproject/b: {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b/lib/index.d.ts: {} /user/username/projects/myproject/b/lib/index.d.ts.map: *new* {} +/user/username/projects/myproject/b/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/a: 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 c2c7c80357153..4ea91605e6b7b 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 @@ -137,10 +137,10 @@ PolledWatches:: FsWatches:: /user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* - {} /user/username/projects/myproject/b/index.ts: *new* {} +/user/username/projects/myproject/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/a: *new* @@ -212,21 +212,21 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/b/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b: *new* {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/b: *new* +/user/username/projects/myproject/b/tsconfig.json: {} FsWatchesRecursive:: 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 b4892d4f92d60..c2a2e34480c8d 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 @@ -140,10 +140,10 @@ PolledWatches:: FsWatches:: /user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* - {} /user/username/projects/myproject/b/index.ts: *new* {} +/user/username/projects/myproject/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/a: *new* @@ -215,21 +215,21 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/b/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b: *new* {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/b: *new* +/user/username/projects/myproject/b/tsconfig.json: {} FsWatchesRecursive:: 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 b0d053abb07ee..1d82aaea6d622 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 @@ -137,10 +137,10 @@ PolledWatches:: FsWatches:: /user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* - {} /user/username/projects/myproject/b/lib/index.d.ts: *new* {} +/user/username/projects/myproject/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/a: *new* @@ -249,20 +249,20 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/b/lib/index.d.ts.map: *new* + {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/lib/index.d.ts.map: *new* - {"pollingInterval":2000} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/b/tsconfig.json: - {} /user/username/projects/myproject/b/lib/index.d.ts: {} +/user/username/projects/myproject/b/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/a: 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 86a5bf53b7fa8..32f1a6fc8d477 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 @@ -140,10 +140,10 @@ PolledWatches:: FsWatches:: /user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* - {} /user/username/projects/myproject/b/lib/index.d.ts: *new* {} +/user/username/projects/myproject/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/a: *new* @@ -265,13 +265,13 @@ PolledWatches:: FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b/index.ts: *new* {} /user/username/projects/myproject/b/lib/index.d.ts: {} /user/username/projects/myproject/b/lib/index.d.ts.map: *new* {} -/user/username/projects/myproject/b/index.ts: *new* +/user/username/projects/myproject/b/tsconfig.json: {} FsWatchesRecursive:: 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 8f049ca7eb370..5e83bf3f1e8a7 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 @@ -137,10 +137,10 @@ PolledWatches:: FsWatches:: /user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* - {} /user/username/projects/myproject/b/index.ts: *new* {} +/user/username/projects/myproject/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/a: *new* 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 145ae95595ee1..547dad3a2bc43 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 @@ -140,10 +140,10 @@ PolledWatches:: FsWatches:: /user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* - {} /user/username/projects/myproject/b/index.ts: *new* {} +/user/username/projects/myproject/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/a: *new* 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 bc75b33e25bcf..6b665be4d5c33 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 @@ -137,10 +137,10 @@ PolledWatches:: FsWatches:: /user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* - {} /user/username/projects/myproject/b/lib/index.d.ts: *new* {} +/user/username/projects/myproject/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/a: *new* @@ -249,20 +249,20 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/b/lib/index.d.ts.map: *new* + {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/lib/index.d.ts.map: *new* - {"pollingInterval":2000} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/b/tsconfig.json: - {} /user/username/projects/myproject/b/lib/index.d.ts: {} +/user/username/projects/myproject/b/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/a: 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 d569d6b59ca9d..6e1e44da9103f 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 @@ -140,10 +140,10 @@ PolledWatches:: FsWatches:: /user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* - {} /user/username/projects/myproject/b/lib/index.d.ts: *new* {} +/user/username/projects/myproject/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/a: *new* @@ -331,27 +331,27 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/b/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: +/user/username/projects/myproject/b: *new* {} -/user/username/projects/myproject/b/lib/index.d.ts.map: *new* +/user/username/projects/myproject/b/helper.ts: *new* {} /user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/b/helper.ts: *new* +/user/username/projects/myproject/b/lib/index.d.ts: {} -/user/username/projects/myproject/b: *new* +/user/username/projects/myproject/b/lib/index.d.ts.map: *new* + {} +/user/username/projects/myproject/b/tsconfig.json: {} FsWatchesRecursive:: 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 9a96537c70989..d8f2f01681773 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 @@ -137,10 +137,10 @@ PolledWatches:: FsWatches:: /user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* - {} /user/username/projects/myproject/b/index.ts: *new* {} +/user/username/projects/myproject/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/a: *new* @@ -326,23 +326,23 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/b/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: +/user/username/projects/myproject/b: *new* {} /user/username/projects/myproject/b/helper.ts: *new* {} -/user/username/projects/myproject/b: *new* +/user/username/projects/myproject/b/index.ts: + {} +/user/username/projects/myproject/b/tsconfig.json: {} FsWatchesRecursive:: 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 d3a501402ce91..c76de4b8e74a2 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 @@ -140,10 +140,10 @@ PolledWatches:: FsWatches:: /user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* - {} /user/username/projects/myproject/b/index.ts: *new* {} +/user/username/projects/myproject/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/a: *new* @@ -329,23 +329,23 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/b/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/a/tsconfig.json: {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: +/user/username/projects/myproject/b: *new* {} /user/username/projects/myproject/b/helper.ts: *new* {} -/user/username/projects/myproject/b: *new* +/user/username/projects/myproject/b/index.ts: + {} +/user/username/projects/myproject/b/tsconfig.json: {} FsWatchesRecursive:: 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 07040c2fa0094..7101f27da9500 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 @@ -120,20 +120,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/solution/compiler/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/solution/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: *new* + {} /user/username/projects/solution/compiler/tsconfig.json: *new* {} /user/username/projects/solution/compiler/types.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} /user/username/projects/solution/tsconfig.json: *new* {} @@ -363,27 +363,27 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/solution/compiler/node_modules/@types: {"pollingInterval":500} +/user/username/projects/solution/compiler/types.d.ts: *new* + {"pollingInterval":2000} /user/username/projects/solution/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/solution/services/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/compiler/types.d.ts: *new* - {"pollingInterval":2000} FsWatches:: +/a/lib/lib.d.ts: + {} /user/username/projects/solution/compiler/tsconfig.json: {} /user/username/projects/solution/compiler/types.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/solution/tsconfig.json: +/user/username/projects/solution/services/services.ts: *new* {} /user/username/projects/solution/services/tsconfig.json: *new* {} -/user/username/projects/solution/services/services.ts: *new* +/user/username/projects/solution/tsconfig.json: {} 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 def7f70ecaea2..97b6eef9fee5b 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 @@ -153,23 +153,23 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/solution/b/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/solution/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/solution/b/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/solution/a/tsconfig.json: *new* +/user/username/projects/solution: *new* {} /user/username/projects/solution/a/index.ts: *new* {} -/user/username/projects/solution: *new* +/user/username/projects/solution/a/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/solution/b/tsconfig.json: *new* {} /user/username/projects/solution/tsconfig.json: *new* {} @@ -526,39 +526,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/solution/b/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: - {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} /user/username/projects/solution/a/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/solution/b/node_modules/@types: + {"pollingInterval":500} /user/username/projects/solution/c/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/solution/d/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/solution/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/solution/b/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/solution/a/tsconfig.json: +/user/username/projects/solution: {} /user/username/projects/solution/a/index.ts: {} -/user/username/projects/solution: +/user/username/projects/solution/a/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/solution/b/tsconfig.json: {} -/user/username/projects/solution/tsconfig.json: +/user/username/projects/solution/c/index.ts: *new* {} /user/username/projects/solution/c/tsconfig.json: *new* {} -/user/username/projects/solution/d/tsconfig.json: *new* +/user/username/projects/solution/d/index.ts: *new* {} -/user/username/projects/solution/c/index.ts: *new* +/user/username/projects/solution/d/tsconfig.json: *new* {} -/user/username/projects/solution/d/index.ts: *new* +/user/username/projects/solution/tsconfig.json: {} FsWatchesRecursive:: 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 9148303fe33ef..469198a62fb4c 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 @@ -397,40 +397,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: *new* +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/node_modules: *new* + {} /user/username/projects/myproject/packages/a/src: *new* {} /user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: *new* - {} Before request 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 9b8fe71264eab..27fd9698d2f7d 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 @@ -394,40 +394,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: *new* +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/node_modules: *new* + {} /user/username/projects/myproject/packages/a/src: *new* {} /user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: *new* - {} Before request 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 5b09d7d961f3f..51a77fff53820 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 @@ -219,40 +219,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: *new* +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/node_modules: *new* + {} /user/username/projects/myproject/packages/a/src: *new* {} /user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: *new* - {} Before request 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 2a780c0121993..8e9c2fd28d735 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 @@ -216,40 +216,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: *new* +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/node_modules: *new* + {} /user/username/projects/myproject/packages/a/src: *new* {} /user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: *new* - {} Before request 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 0e973744d6ddd..bb1c8e64c3ac8 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 @@ -397,40 +397,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: *new* +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/node_modules: *new* + {} /user/username/projects/myproject/packages/a/src: *new* {} /user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: *new* - {} Before request 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 ed378b9f703a8..f2f190702c119 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 @@ -394,40 +394,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: *new* +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/node_modules: *new* + {} /user/username/projects/myproject/packages/a/src: *new* {} /user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: *new* - {} Before request 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 c65e43aacb6e0..b9a2415a99db7 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 @@ -219,40 +219,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: *new* +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/node_modules: *new* + {} /user/username/projects/myproject/packages/a/src: *new* {} /user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: *new* - {} Before request 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 90a2e97a36208..9e1301edbe2be 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 @@ -216,40 +216,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: *new* +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/node_modules: *new* + {} /user/username/projects/myproject/packages/a/src: *new* {} /user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: *new* - {} Before request 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 6e50e4063968d..f5e779d45846b 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 @@ -397,40 +397,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: *new* +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/node_modules: *new* + {} /user/username/projects/myproject/packages/a/src: *new* {} /user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: *new* - {} Before request 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 397292b4905bb..61727588c65a9 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 @@ -394,40 +394,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: *new* +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/node_modules: *new* + {} /user/username/projects/myproject/packages/a/src: *new* {} /user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: *new* - {} Before request 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 1ed43b42eef23..efe70ae85f37f 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 @@ -219,40 +219,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: *new* +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/node_modules: *new* + {} /user/username/projects/myproject/packages/a/src: *new* {} /user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: *new* - {} Before request 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 1d4369c5b5447..c42639e43e77a 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 @@ -216,40 +216,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: *new* +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/node_modules: *new* + {} /user/username/projects/myproject/packages/a/src: *new* {} /user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: *new* - {} Before request 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 92a4865f17cf6..3a0972953b74a 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 @@ -397,40 +397,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: *new* +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/node_modules: *new* + {} /user/username/projects/myproject/packages/a/src: *new* {} /user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: *new* - {} Before request 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 03916b26dadcf..9d69e916afbe1 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 @@ -394,40 +394,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: *new* +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/node_modules: *new* + {} /user/username/projects/myproject/packages/a/src: *new* {} /user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: *new* - {} Before request 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 8ef2224f661f8..643b1b76d7547 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 @@ -219,40 +219,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: *new* +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/node_modules: *new* + {} /user/username/projects/myproject/packages/a/src: *new* {} /user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: *new* - {} Before request 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 7ea5edfb08097..a0c01753688eb 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 @@ -216,40 +216,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: *new* +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: *new* +/user/username/projects/myproject/packages/b/package.json: *new* {} /user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: *new* +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/node_modules: *new* + {} /user/username/projects/myproject/packages/a/src: *new* {} /user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: *new* - {} Before request 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 f266370f35738..a17304fa1963e 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 @@ -118,30 +118,30 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/projects/project2/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: *new* - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/projects/project1/class1.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/projects/project1/tsconfig.json: *new* + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: *new* - {} /user/username/projects/myproject/projects/project1: *new* {} +/user/username/projects/myproject/projects/project2: *new* + {} Info seq [hh:mm:ss:mss] 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 seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json @@ -185,32 +185,32 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/projects/ After running Timeout callback:: count: 0 PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/class3.d.ts: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} /user/username/projects/myproject/projects/project1: {} +/user/username/projects/myproject/projects/project2: + {} Info seq [hh:mm:ss:mss] 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 seq [hh:mm:ss:mss] 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 @@ -228,11 +228,11 @@ declare class class3 {} PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} @@ -242,20 +242,20 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} /user/username/projects/myproject/projects/project1: {} +/user/username/projects/myproject/projects/project2: + {} Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/projects/project2/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json @@ -299,32 +299,32 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/projects/ After running Timeout callback:: count: 0 PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/projects/project1/class3.d.ts: *new* {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} /user/username/projects/myproject/projects/project1: {} +/user/username/projects/myproject/projects/project2: + {} Info seq [hh:mm:ss:mss] 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 seq [hh:mm:ss:mss] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp @@ -353,23 +353,23 @@ Before running Timeout callback:: count: 2 //// [/user/username/projects/myproject/projects/project1/class3.d.ts] deleted PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatches *deleted*:: @@ -377,10 +377,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} /user/username/projects/myproject/projects/project1: {} +/user/username/projects/myproject/projects/project2: + {} Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/projects/project2/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json @@ -421,32 +421,32 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/projects/ After running Timeout callback:: count: 0 PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/class3.d.ts: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} /user/username/projects/myproject/projects/project1: {} +/user/username/projects/myproject/projects/project2: + {} Info seq [hh:mm:ss:mss] 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 seq [hh:mm:ss:mss] 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 @@ -464,11 +464,11 @@ declare class class3 {} PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} @@ -478,20 +478,20 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} /user/username/projects/myproject/projects/project1: {} +/user/username/projects/myproject/projects/project2: + {} Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/projects/project2/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json @@ -535,29 +535,29 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/projects/ After running Timeout callback:: count: 0 PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/projects/project1/class3.d.ts: *new* {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} /user/username/projects/myproject/projects/project1: {} +/user/username/projects/myproject/projects/project2: + {} 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 cf386960a2eab..c2e1f83efe976 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 @@ -117,30 +117,30 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/projects/project2/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: *new* - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/projects/project1/class1.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/projects/project1/tsconfig.json: *new* + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: *new* - {} /user/username/projects/myproject/projects/project1: *new* {} +/user/username/projects/myproject/projects/project2: *new* + {} Info seq [hh:mm:ss:mss] 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 seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json @@ -195,32 +195,32 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/projects/ After running Timeout callback:: count: 0 PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/projects/project1/class3.ts: *new* {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} /user/username/projects/myproject/projects/project1: {} +/user/username/projects/myproject/projects/project2: + {} Info seq [hh:mm:ss:mss] 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 seq [hh:mm:ss:mss] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp 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 04a6c05e06a8f..5055cf58afc8d 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 @@ -118,30 +118,30 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/projects/project2/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: *new* - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/projects/project1/class1.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/projects/project1/tsconfig.json: *new* + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: *new* - {} /user/username/projects/myproject/projects/project1: *new* {} +/user/username/projects/myproject/projects/project2: *new* + {} Before request @@ -201,32 +201,32 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project1/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} /user/username/projects/myproject/projects/project1: {} +/user/username/projects/myproject/projects/project2: + {} Info seq [hh:mm:ss:mss] 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 seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json @@ -304,36 +304,36 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/projects/ After running Timeout callback:: count: 0 PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {"pollingInterval":500} /user/username/projects/myproject/projects/project1/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/class3.d.ts: *new* +/user/username/projects/myproject/projects/project2/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/projects/project1/class3.ts: *new* {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} /user/username/projects/myproject/projects/project1: {} +/user/username/projects/myproject/projects/project2: + {} Info seq [hh:mm:ss:mss] 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 seq [hh:mm:ss:mss] 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 @@ -351,15 +351,15 @@ declare class class3 {} PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project1/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: @@ -367,22 +367,22 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/projects/project1/class3.ts: {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} /user/username/projects/myproject/projects/project1: {} +/user/username/projects/myproject/projects/project2: + {} Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/projects/project2/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json @@ -438,36 +438,36 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/projects/ After running Timeout callback:: count: 0 PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project1/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {} /user/username/projects/myproject/projects/project1/class3.ts: {} -/user/username/projects/myproject/projects/project1/class3.d.ts: *new* +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} /user/username/projects/myproject/projects/project1: {} +/user/username/projects/myproject/projects/project2: + {} Info seq [hh:mm:ss:mss] 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 seq [hh:mm:ss:mss] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp @@ -496,38 +496,38 @@ Before running Timeout callback:: count: 2 //// [/user/username/projects/myproject/projects/project1/class3.d.ts] deleted PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project1/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/projects/project1/class3.ts: {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/projects/project1/class3.d.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} /user/username/projects/myproject/projects/project1: {} +/user/username/projects/myproject/projects/project2: + {} Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/projects/project2/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json @@ -580,36 +580,36 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/projects/ After running Timeout callback:: count: 0 PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {"pollingInterval":500} /user/username/projects/myproject/projects/project1/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/class3.d.ts: *new* +/user/username/projects/myproject/projects/project2/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/projects/project1/class3.ts: {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} /user/username/projects/myproject/projects/project1: {} +/user/username/projects/myproject/projects/project2: + {} Info seq [hh:mm:ss:mss] 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 seq [hh:mm:ss:mss] 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 @@ -627,15 +627,15 @@ declare class class3 {} PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project1/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: @@ -643,22 +643,22 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/projects/project1/class3.ts: {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} /user/username/projects/myproject/projects/project1: {} +/user/username/projects/myproject/projects/project2: + {} Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/projects/project2/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json @@ -714,33 +714,33 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/projects/ After running Timeout callback:: count: 0 PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project1/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class1.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {} /user/username/projects/myproject/projects/project1/class3.ts: {} -/user/username/projects/myproject/projects/project1/class3.d.ts: *new* +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} /user/username/projects/myproject/projects/project1: {} +/user/username/projects/myproject/projects/project2: + {} 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 9ffa0013101f7..037299a5c6763 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 @@ -117,30 +117,30 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/projects/project2/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: *new* - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/projects/project1/class1.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/projects/project1/tsconfig.json: *new* + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: *new* - {} /user/username/projects/myproject/projects/project1: *new* {} +/user/username/projects/myproject/projects/project2: *new* + {} Before request @@ -201,23 +201,23 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project1/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/projects/project2/tsconfig.json: {} FsWatches *deleted*:: @@ -225,10 +225,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} /user/username/projects/myproject/projects/project1: {} +/user/username/projects/myproject/projects/project2: + {} Info seq [hh:mm:ss:mss] 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 seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json @@ -316,32 +316,32 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/projects/ After running Timeout callback:: count: 0 PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/projects/project1/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject/projects/project1/class3.ts: *new* {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} /user/username/projects/myproject/projects/project1: {} +/user/username/projects/myproject/projects/project2: + {} Info seq [hh:mm:ss:mss] 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 seq [hh:mm:ss:mss] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp 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 26d484eee44ab..31e70af71ef3c 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 @@ -275,13 +275,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} -/user/username/projects/myproject/tsconfig-src.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src/helpers/functions.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig-src.json: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -833,19 +833,19 @@ PolledWatches *deleted*:: FsWatches:: /a/lib/lib.d.ts: {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/src/helpers/functions.ts: {} *new* /user/username/projects/myproject/tsconfig-src.json: {} *new* -/user/username/projects/myproject/src/helpers/functions.ts: +/user/username/projects/myproject/tsconfig.json: {} *new* FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/src/helpers/functions.ts: {} /user/username/projects/myproject/tsconfig-src.json: {} -/user/username/projects/myproject/src/helpers/functions.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: @@ -958,16 +958,16 @@ PolledWatches:: FsWatches:: /a/lib/lib.d.ts: {} -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} /user/username/projects/myproject/src/helpers/functions.ts: {} /user/username/projects/myproject/target/src/helpers/functions.d.ts: *new* {} /user/username/projects/myproject/target/src/helpers/functions.d.ts.map: *new* {} +/user/username/projects/myproject/tsconfig-src.json: + {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -1181,32 +1181,32 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/indirect3 Before request PolledWatches:: +/user/username/projects/myproject/indirect3/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/indirect3/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: {} +/user/username/projects/myproject/indirect3/tsconfig.json: *new* + {} /user/username/projects/myproject/src/helpers/functions.ts: {} /user/username/projects/myproject/target/src/helpers/functions.d.ts: {} /user/username/projects/myproject/target/src/helpers/functions.d.ts.map: {} -/user/username/projects/myproject/indirect3/tsconfig.json: *new* - {} /user/username/projects/myproject/target/src/main.d.ts: *new* {} FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: - {} /user/username/projects/myproject/tsconfig-src.json: {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/indirect3: *new* @@ -1459,39 +1459,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/indirect3/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/indirect3/node_modules/@types: - {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: {} +/user/username/projects/myproject/indirect3/tsconfig.json: + {} /user/username/projects/myproject/src/helpers/functions.ts: {} +/user/username/projects/myproject/src/main.ts: *new* + {} /user/username/projects/myproject/target/src/helpers/functions.d.ts: {} /user/username/projects/myproject/target/src/helpers/functions.d.ts.map: {} -/user/username/projects/myproject/indirect3/tsconfig.json: - {} /user/username/projects/myproject/target/src/main.d.ts: {} /user/username/projects/myproject/target/src/main.d.ts.map: *new* {} -/user/username/projects/myproject/src/main.ts: *new* +/user/username/projects/myproject/tsconfig-src.json: *new* {} /user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/tsconfig-src.json: *new* - {} FsWatchesRecursive:: /user/username/projects/myproject/indirect3: {} -/user/username/projects/myproject/target: - {} /user/username/projects/myproject/src: *new* {} +/user/username/projects/myproject/target: + {} 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 6573bc6c31359..a8676fdd7180d 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 @@ -331,17 +331,17 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/tsconfig-indirect1.json: *new* +/user/username/projects/myproject/src/helpers/functions.ts: *new* {} -/user/username/projects/myproject/tsconfig-src.json: *new* +/user/username/projects/myproject/tsconfig-indirect1.json: *new* {} /user/username/projects/myproject/tsconfig-indirect2.json: *new* {} -/user/username/projects/myproject/src/helpers/functions.ts: *new* +/user/username/projects/myproject/tsconfig-src.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -973,27 +973,27 @@ PolledWatches *deleted*:: FsWatches:: /a/lib/lib.d.ts: {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/src/helpers/functions.ts: {} *new* /user/username/projects/myproject/tsconfig-indirect1.json: {} *new* -/user/username/projects/myproject/tsconfig-src.json: - {} *new* /user/username/projects/myproject/tsconfig-indirect2.json: {} *new* -/user/username/projects/myproject/src/helpers/functions.ts: +/user/username/projects/myproject/tsconfig-src.json: + {} *new* +/user/username/projects/myproject/tsconfig.json: {} *new* FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/src/helpers/functions.ts: {} /user/username/projects/myproject/tsconfig-indirect1.json: {} -/user/username/projects/myproject/tsconfig-src.json: - {} /user/username/projects/myproject/tsconfig-indirect2.json: {} -/user/username/projects/myproject/src/helpers/functions.ts: +/user/username/projects/myproject/tsconfig-src.json: + {} +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: @@ -1380,23 +1380,23 @@ PolledWatches:: FsWatches:: /a/lib/lib.d.ts: {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/indirect1/main.ts: *new* {} -/user/username/projects/myproject/tsconfig-indirect1.json: +/user/username/projects/myproject/indirect2/main.ts: *new* {} -/user/username/projects/myproject/tsconfig-src.json: +/user/username/projects/myproject/src/helpers/functions.ts: {} -/user/username/projects/myproject/tsconfig-indirect2.json: +/user/username/projects/myproject/target/src/helpers/functions.d.ts: *new* {} -/user/username/projects/myproject/src/helpers/functions.ts: +/user/username/projects/myproject/target/src/helpers/functions.d.ts.map: *new* {} -/user/username/projects/myproject/indirect1/main.ts: *new* +/user/username/projects/myproject/tsconfig-indirect1.json: {} -/user/username/projects/myproject/indirect2/main.ts: *new* +/user/username/projects/myproject/tsconfig-indirect2.json: {} -/user/username/projects/myproject/target/src/helpers/functions.d.ts: *new* +/user/username/projects/myproject/tsconfig-src.json: {} -/user/username/projects/myproject/target/src/helpers/functions.d.ts.map: *new* +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: @@ -1677,39 +1677,39 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/indirect3 Before request PolledWatches:: +/user/username/projects/myproject/indirect3/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/indirect3/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: {} +/user/username/projects/myproject/indirect3/tsconfig.json: *new* + {} /user/username/projects/myproject/src/helpers/functions.ts: {} /user/username/projects/myproject/target/src/helpers/functions.d.ts: {} /user/username/projects/myproject/target/src/helpers/functions.d.ts.map: {} -/user/username/projects/myproject/indirect3/tsconfig.json: *new* - {} /user/username/projects/myproject/target/src/main.d.ts: *new* {} FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/indirect1/main.ts: {} -/user/username/projects/myproject/tsconfig-indirect1.json: +/user/username/projects/myproject/indirect2/main.ts: {} -/user/username/projects/myproject/tsconfig-src.json: +/user/username/projects/myproject/tsconfig-indirect1.json: {} /user/username/projects/myproject/tsconfig-indirect2.json: {} -/user/username/projects/myproject/indirect1/main.ts: +/user/username/projects/myproject/tsconfig-src.json: {} -/user/username/projects/myproject/indirect2/main.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: @@ -2187,47 +2187,47 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/indirect3/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/indirect3/node_modules/@types: - {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: {} +/user/username/projects/myproject/indirect1/main.ts: *new* + {} +/user/username/projects/myproject/indirect2/main.ts: *new* + {} +/user/username/projects/myproject/indirect3/tsconfig.json: + {} /user/username/projects/myproject/src/helpers/functions.ts: {} +/user/username/projects/myproject/src/main.ts: *new* + {} /user/username/projects/myproject/target/src/helpers/functions.d.ts: {} /user/username/projects/myproject/target/src/helpers/functions.d.ts.map: {} -/user/username/projects/myproject/indirect3/tsconfig.json: - {} /user/username/projects/myproject/target/src/main.d.ts: {} /user/username/projects/myproject/target/src/main.d.ts.map: *new* {} -/user/username/projects/myproject/src/main.ts: *new* - {} -/user/username/projects/myproject/tsconfig.json: *new* - {} /user/username/projects/myproject/tsconfig-indirect1.json: *new* {} -/user/username/projects/myproject/tsconfig-src.json: *new* - {} /user/username/projects/myproject/tsconfig-indirect2.json: *new* {} -/user/username/projects/myproject/indirect1/main.ts: *new* +/user/username/projects/myproject/tsconfig-src.json: *new* {} -/user/username/projects/myproject/indirect2/main.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/indirect3: {} -/user/username/projects/myproject/target: - {} /user/username/projects/myproject/src: *new* {} +/user/username/projects/myproject/target: + {} diff --git a/tests/baselines/reference/tsserver/projectReferences/reusing-d.ts-files-from-composite-and-non-composite-projects.js b/tests/baselines/reference/tsserver/projectReferences/reusing-d.ts-files-from-composite-and-non-composite-projects.js index a8d9f3bb99637..f8dd4d3f99346 100644 --- a/tests/baselines/reference/tsserver/projectReferences/reusing-d.ts-files-from-composite-and-non-composite-projects.js +++ b/tests/baselines/reference/tsserver/projectReferences/reusing-d.ts-files-from-composite-and-non-composite-projects.js @@ -206,37 +206,37 @@ export const x = 10;export const y = 30; PolledWatches:: /user/username/projects/myproject/compositea/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/compositec/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/compositec/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/compositea/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/compositea/a2.ts: *new* {} -/user/username/projects/myproject/dist/compositeb/b.d.ts: *new* - {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/compositea/tsconfig.json: *new* {} -/user/username/projects/myproject/compositec/tsconfig.json: *new* +/user/username/projects/myproject/compositeb/b.ts: *new* {} /user/username/projects/myproject/compositeb/tsconfig.json: *new* {} -/user/username/projects/myproject/compositeb/b.ts: *new* +/user/username/projects/myproject/compositec/tsconfig.json: *new* + {} +/user/username/projects/myproject/dist/compositeb/b.d.ts: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/compositea: *new* {} -/user/username/projects/myproject/dist: *new* +/user/username/projects/myproject/compositeb: *new* {} /user/username/projects/myproject/compositec: *new* {} -/user/username/projects/myproject/compositeb: *new* +/user/username/projects/myproject/dist: *new* {} Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/compositea/tsconfig.json 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 35685359f1047..a59fb56c503d2 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 @@ -347,21 +347,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/project/src/common/node_modules/@types: *new* - {"pollingInterval":500} -/user/username/projects/project/src/node_modules/@types: *new* +/user/username/projects/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: *new* +/user/username/projects/project/src/common/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/project/src/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/project/src/common/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/project/src/common/input/keyboard.test.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/project/src/common/tsconfig.json: *new* {} /user/username/projects/project/src/tsconfig.json: *new* {} @@ -466,32 +466,32 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/project/src/common/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/project/src/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} /user/username/projects/project/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/project/src/common/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/project/src/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/project/src/common/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/project/out/input/keyboard.d.ts: *new* {} /user/username/projects/project/src/common/input/keyboard.test.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/project/src/common/tsconfig.json: {} /user/username/projects/project/src/tsconfig.json: {} -/user/username/projects/project/out/input/keyboard.d.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/project/src/common: - {} /user/username/projects/project/src: *new* {} +/user/username/projects/project/src/common: + {} Before request @@ -621,31 +621,31 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/project/src/common/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/project/src/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} /user/username/projects/project/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/project/src/common/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/project/src/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/project/src/common/tsconfig.json: - {} -/user/username/projects/project/src/common/input/keyboard.test.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/project/src/tsconfig.json: - {} /user/username/projects/project/out/input/keyboard.d.ts: {} /user/username/projects/project/out/input/keyboard.d.ts.map: *new* {} +/user/username/projects/project/src/common/input/keyboard.test.ts: + {} +/user/username/projects/project/src/common/tsconfig.json: + {} +/user/username/projects/project/src/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/project/src/common: - {} /user/username/projects/project/src: {} +/user/username/projects/project/src/common: + {} 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 3149c5b6f34d4..e2ed889512f80 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 @@ -347,21 +347,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/project/src/common/node_modules/@types: *new* - {"pollingInterval":500} -/user/username/projects/project/src/node_modules/@types: *new* +/user/username/projects/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: *new* +/user/username/projects/project/src/common/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/project/src/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/project/src/common/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/project/src/common/input/keyboard.test.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/project/src/common/tsconfig.json: *new* {} /user/username/projects/project/src/tsconfig.json: *new* {} @@ -464,30 +464,30 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/project/src/common/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/project/src/node_modules/@types: +/user/username/projects/node_modules/@types: {"pollingInterval":500} /user/username/projects/project/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/project/src/common/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/project/src/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/project/src/common/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/project/src/common/input/keyboard.test.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/project/src/common/tsconfig.json: {} /user/username/projects/project/src/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/project/src/common: - {} /user/username/projects/project/src: *new* {} +/user/username/projects/project/src/common: + {} Before request 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 4d6c6c13b5278..4932e5e4bba00 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 @@ -302,15 +302,15 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/own/main.ts: *new* {} -/user/username/projects/myproject/tsconfig-src.json: *new* - {} /user/username/projects/myproject/src/helpers/functions.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig-src.json: *new* + {} +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -906,23 +906,23 @@ PolledWatches *deleted*:: FsWatches:: /a/lib/lib.d.ts: {} -/user/username/projects/myproject/tsconfig.json: - {} *new* /user/username/projects/myproject/own/main.ts: {} *new* +/user/username/projects/myproject/src/helpers/functions.ts: + {} *new* /user/username/projects/myproject/tsconfig-src.json: {} *new* -/user/username/projects/myproject/src/helpers/functions.ts: +/user/username/projects/myproject/tsconfig.json: {} *new* FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: - {} /user/username/projects/myproject/own/main.ts: {} +/user/username/projects/myproject/src/helpers/functions.ts: + {} /user/username/projects/myproject/tsconfig-src.json: {} -/user/username/projects/myproject/src/helpers/functions.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: @@ -1082,18 +1082,18 @@ PolledWatches:: FsWatches:: /a/lib/lib.d.ts: {} -/user/username/projects/myproject/tsconfig.json: - {} /user/username/projects/myproject/own/main.ts: {} -/user/username/projects/myproject/tsconfig-src.json: - {} /user/username/projects/myproject/src/helpers/functions.ts: {} /user/username/projects/myproject/target/src/helpers/functions.d.ts: *new* {} /user/username/projects/myproject/target/src/helpers/functions.d.ts.map: *new* {} +/user/username/projects/myproject/tsconfig-src.json: + {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -1320,34 +1320,34 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/indirect3 Before request PolledWatches:: +/user/username/projects/myproject/indirect3/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/indirect3/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: {} +/user/username/projects/myproject/indirect3/tsconfig.json: *new* + {} /user/username/projects/myproject/src/helpers/functions.ts: {} /user/username/projects/myproject/target/src/helpers/functions.d.ts: {} /user/username/projects/myproject/target/src/helpers/functions.d.ts.map: {} -/user/username/projects/myproject/indirect3/tsconfig.json: *new* - {} /user/username/projects/myproject/target/src/main.d.ts: *new* {} FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: - {} /user/username/projects/myproject/own/main.ts: {} /user/username/projects/myproject/tsconfig-src.json: {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/indirect3: *new* @@ -1666,41 +1666,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/indirect3/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/indirect3/node_modules/@types: - {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: {} +/user/username/projects/myproject/indirect3/tsconfig.json: + {} +/user/username/projects/myproject/own/main.ts: *new* + {} /user/username/projects/myproject/src/helpers/functions.ts: {} +/user/username/projects/myproject/src/main.ts: *new* + {} /user/username/projects/myproject/target/src/helpers/functions.d.ts: {} /user/username/projects/myproject/target/src/helpers/functions.d.ts.map: {} -/user/username/projects/myproject/indirect3/tsconfig.json: - {} /user/username/projects/myproject/target/src/main.d.ts: {} /user/username/projects/myproject/target/src/main.d.ts.map: *new* {} -/user/username/projects/myproject/src/main.ts: *new* +/user/username/projects/myproject/tsconfig-src.json: *new* {} /user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/own/main.ts: *new* - {} -/user/username/projects/myproject/tsconfig-src.json: *new* - {} FsWatchesRecursive:: /user/username/projects/myproject/indirect3: {} -/user/username/projects/myproject/target: - {} /user/username/projects/myproject/src: *new* {} +/user/username/projects/myproject/target: + {} 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 874465ab131e4..f6d727c03edff 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 @@ -361,21 +361,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* + {} +/user/username/projects/myproject/indirect1/main.ts: *new* {} /user/username/projects/myproject/own/main.ts: *new* {} -/user/username/projects/myproject/tsconfig-indirect1.json: *new* +/user/username/projects/myproject/src/helpers/functions.ts: *new* {} -/user/username/projects/myproject/tsconfig-src.json: *new* +/user/username/projects/myproject/tsconfig-indirect1.json: *new* {} /user/username/projects/myproject/tsconfig-indirect2.json: *new* {} -/user/username/projects/myproject/indirect1/main.ts: *new* - {} -/user/username/projects/myproject/src/helpers/functions.ts: *new* +/user/username/projects/myproject/tsconfig-src.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -1062,35 +1062,35 @@ PolledWatches *deleted*:: FsWatches:: /a/lib/lib.d.ts: {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/indirect1/main.ts: {} *new* /user/username/projects/myproject/own/main.ts: {} *new* -/user/username/projects/myproject/tsconfig-indirect1.json: +/user/username/projects/myproject/src/helpers/functions.ts: {} *new* -/user/username/projects/myproject/tsconfig-src.json: +/user/username/projects/myproject/tsconfig-indirect1.json: {} *new* /user/username/projects/myproject/tsconfig-indirect2.json: {} *new* -/user/username/projects/myproject/indirect1/main.ts: +/user/username/projects/myproject/tsconfig-src.json: {} *new* -/user/username/projects/myproject/src/helpers/functions.ts: +/user/username/projects/myproject/tsconfig.json: {} *new* FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/indirect1/main.ts: {} /user/username/projects/myproject/own/main.ts: {} -/user/username/projects/myproject/tsconfig-indirect1.json: +/user/username/projects/myproject/src/helpers/functions.ts: {} -/user/username/projects/myproject/tsconfig-src.json: +/user/username/projects/myproject/tsconfig-indirect1.json: {} /user/username/projects/myproject/tsconfig-indirect2.json: {} -/user/username/projects/myproject/indirect1/main.ts: +/user/username/projects/myproject/tsconfig-src.json: {} -/user/username/projects/myproject/src/helpers/functions.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: @@ -1493,25 +1493,25 @@ PolledWatches:: FsWatches:: /a/lib/lib.d.ts: {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/indirect1/main.ts: {} -/user/username/projects/myproject/own/main.ts: +/user/username/projects/myproject/indirect2/main.ts: *new* {} -/user/username/projects/myproject/tsconfig-indirect1.json: +/user/username/projects/myproject/own/main.ts: {} -/user/username/projects/myproject/tsconfig-src.json: +/user/username/projects/myproject/src/helpers/functions.ts: {} -/user/username/projects/myproject/tsconfig-indirect2.json: +/user/username/projects/myproject/target/src/helpers/functions.d.ts: *new* {} -/user/username/projects/myproject/indirect1/main.ts: +/user/username/projects/myproject/target/src/helpers/functions.d.ts.map: *new* {} -/user/username/projects/myproject/src/helpers/functions.ts: +/user/username/projects/myproject/tsconfig-indirect1.json: {} -/user/username/projects/myproject/indirect2/main.ts: *new* +/user/username/projects/myproject/tsconfig-indirect2.json: {} -/user/username/projects/myproject/target/src/helpers/functions.d.ts: *new* +/user/username/projects/myproject/tsconfig-src.json: {} -/user/username/projects/myproject/target/src/helpers/functions.d.ts.map: *new* +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: @@ -1808,41 +1808,41 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/indirect3 Before request PolledWatches:: +/user/username/projects/myproject/indirect3/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/indirect3/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: {} +/user/username/projects/myproject/indirect3/tsconfig.json: *new* + {} /user/username/projects/myproject/src/helpers/functions.ts: {} /user/username/projects/myproject/target/src/helpers/functions.d.ts: {} /user/username/projects/myproject/target/src/helpers/functions.d.ts.map: {} -/user/username/projects/myproject/indirect3/tsconfig.json: *new* - {} /user/username/projects/myproject/target/src/main.d.ts: *new* {} FsWatches *deleted*:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/indirect1/main.ts: + {} +/user/username/projects/myproject/indirect2/main.ts: {} /user/username/projects/myproject/own/main.ts: {} /user/username/projects/myproject/tsconfig-indirect1.json: {} -/user/username/projects/myproject/tsconfig-src.json: - {} /user/username/projects/myproject/tsconfig-indirect2.json: {} -/user/username/projects/myproject/indirect1/main.ts: +/user/username/projects/myproject/tsconfig-src.json: {} -/user/username/projects/myproject/indirect2/main.ts: +/user/username/projects/myproject/tsconfig.json: {} FsWatchesRecursive:: @@ -2359,49 +2359,49 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/indirect3/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/indirect3/node_modules/@types: - {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/user/username/projects/myproject/target/src/helpers/functions.d.ts: +/user/username/projects/myproject/indirect1/main.ts: *new* {} -/user/username/projects/myproject/target/src/helpers/functions.d.ts.map: +/user/username/projects/myproject/indirect2/main.ts: *new* {} /user/username/projects/myproject/indirect3/tsconfig.json: {} -/user/username/projects/myproject/target/src/main.d.ts: +/user/username/projects/myproject/own/main.ts: *new* {} -/user/username/projects/myproject/target/src/main.d.ts.map: *new* +/user/username/projects/myproject/src/helpers/functions.ts: {} /user/username/projects/myproject/src/main.ts: *new* {} -/user/username/projects/myproject/tsconfig.json: *new* +/user/username/projects/myproject/target/src/helpers/functions.d.ts: {} -/user/username/projects/myproject/own/main.ts: *new* +/user/username/projects/myproject/target/src/helpers/functions.d.ts.map: {} -/user/username/projects/myproject/tsconfig-indirect1.json: *new* +/user/username/projects/myproject/target/src/main.d.ts: {} -/user/username/projects/myproject/tsconfig-src.json: *new* +/user/username/projects/myproject/target/src/main.d.ts.map: *new* + {} +/user/username/projects/myproject/tsconfig-indirect1.json: *new* {} /user/username/projects/myproject/tsconfig-indirect2.json: *new* {} -/user/username/projects/myproject/indirect1/main.ts: *new* +/user/username/projects/myproject/tsconfig-src.json: *new* {} -/user/username/projects/myproject/indirect2/main.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/indirect3: {} -/user/username/projects/myproject/target: - {} /user/username/projects/myproject/src: *new* {} +/user/username/projects/myproject/target: + {} 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 92255f3089592..77c6f884cc3cd 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 @@ -135,21 +135,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/solution/api/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/solution/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/solution/api/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/solution/shared/tsconfig.json: *new* +/user/username/projects/solution/api/tsconfig.json: *new* {} /user/username/projects/solution/shared/src/index.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/solution/shared/tsconfig.json: *new* {} /user/username/projects/solution/tsconfig.json: *new* {} @@ -157,10 +157,10 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/solution/api/src: *new* {} -/user/username/projects/solution/shared/src: *new* - {} /user/username/projects/solution/shared: *new* {} +/user/username/projects/solution/shared/src: *new* + {} Before request @@ -342,39 +342,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/solution/api/node_modules/@types: {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: +/user/username/projects/solution/app/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/solution/node_modules/@types: {"pollingInterval":500} /user/username/projects/solution/shared/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/app/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: + {} /user/username/projects/solution/api/tsconfig.json: {} -/user/username/projects/solution/shared/tsconfig.json: +/user/username/projects/solution/app/src/app.ts: *new* + {} +/user/username/projects/solution/app/tsconfig.json: *new* {} /user/username/projects/solution/shared/src/index.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/solution/shared/tsconfig.json: {} /user/username/projects/solution/tsconfig.json: {} -/user/username/projects/solution/app/tsconfig.json: *new* - {} -/user/username/projects/solution/app/src/app.ts: *new* - {} FsWatchesRecursive:: /user/username/projects/solution/api/src: {} -/user/username/projects/solution/shared/src: +/user/username/projects/solution/app/src: *new* {} /user/username/projects/solution/shared: {} -/user/username/projects/solution/app/src: *new* +/user/username/projects/solution/shared/src: {} 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 d0798e8c85010..13d5350b441d2 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 @@ -136,21 +136,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/solution/api/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/solution/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/solution/api/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/solution/shared/tsconfig.json: *new* +/user/username/projects/solution/api/tsconfig.json: *new* {} /user/username/projects/solution/shared/src/index.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/solution/shared/tsconfig.json: *new* {} /user/username/projects/solution/tsconfig.json: *new* {} @@ -158,10 +158,10 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/solution/api/src: *new* {} -/user/username/projects/solution/shared/src: *new* - {} /user/username/projects/solution/shared: *new* {} +/user/username/projects/solution/shared/src: *new* + {} Before request @@ -251,23 +251,23 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/solution/api/node_modules/@types: {"pollingInterval":500} /user/username/projects/solution/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/solution/shared/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/solution/api/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/solution/shared/tsconfig.json: +/user/username/projects/solution/api/tsconfig.json: {} /user/username/projects/solution/shared/src/index.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/solution/shared/tsconfig.json: {} /user/username/projects/solution/tsconfig.json: {} @@ -275,7 +275,7 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/solution/api/src: {} -/user/username/projects/solution/shared/src: - {} /user/username/projects/solution/shared: {} +/user/username/projects/solution/shared/src: + {} 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 a9485c7ebc868..0dfceea734ff6 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 @@ -135,21 +135,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/solution/api/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/solution/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/solution/api/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/solution/shared/tsconfig.json: *new* +/user/username/projects/solution/api/tsconfig.json: *new* {} /user/username/projects/solution/shared/src/index.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/solution/shared/tsconfig.json: *new* {} /user/username/projects/solution/tsconfig.json: *new* {} @@ -157,10 +157,10 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/solution/api/src: *new* {} -/user/username/projects/solution/shared/src: *new* - {} /user/username/projects/solution/shared: *new* {} +/user/username/projects/solution/shared/src: *new* + {} Before request @@ -342,39 +342,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/solution/api/node_modules/@types: {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: +/user/username/projects/solution/app/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/solution/node_modules/@types: {"pollingInterval":500} /user/username/projects/solution/shared/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/app/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: + {} /user/username/projects/solution/api/tsconfig.json: {} -/user/username/projects/solution/shared/tsconfig.json: +/user/username/projects/solution/app/src/app.ts: *new* + {} +/user/username/projects/solution/app/tsconfig.json: *new* {} /user/username/projects/solution/shared/src/index.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/solution/shared/tsconfig.json: {} /user/username/projects/solution/tsconfig.json: {} -/user/username/projects/solution/app/tsconfig.json: *new* - {} -/user/username/projects/solution/app/src/app.ts: *new* - {} FsWatchesRecursive:: /user/username/projects/solution/api/src: {} -/user/username/projects/solution/shared/src: +/user/username/projects/solution/app/src: *new* {} /user/username/projects/solution/shared: {} -/user/username/projects/solution/app/src: *new* +/user/username/projects/solution/shared/src: {} 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 f61a21515a46f..cd6adfcf26741 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 @@ -137,21 +137,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/solution/api/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/solution/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/solution/api/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/solution/shared/tsconfig.json: *new* +/user/username/projects/solution/api/tsconfig.json: *new* {} /user/username/projects/solution/shared/src/index.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/solution/shared/tsconfig.json: *new* {} /user/username/projects/solution/tsconfig.json: *new* {} @@ -159,10 +159,10 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/solution/api/src: *new* {} -/user/username/projects/solution/shared/src: *new* - {} /user/username/projects/solution/shared: *new* {} +/user/username/projects/solution/shared/src: *new* + {} Before request @@ -344,39 +344,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/solution/api/node_modules/@types: {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: +/user/username/projects/solution/app/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/solution/node_modules/@types: {"pollingInterval":500} /user/username/projects/solution/shared/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/app/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: + {} /user/username/projects/solution/api/tsconfig.json: {} -/user/username/projects/solution/shared/tsconfig.json: +/user/username/projects/solution/app/src/app.ts: *new* + {} +/user/username/projects/solution/app/tsconfig.json: *new* {} /user/username/projects/solution/shared/src/index.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/solution/shared/tsconfig.json: {} /user/username/projects/solution/tsconfig.json: {} -/user/username/projects/solution/app/tsconfig.json: *new* - {} -/user/username/projects/solution/app/src/app.ts: *new* - {} FsWatchesRecursive:: /user/username/projects/solution/api/src: {} -/user/username/projects/solution/shared/src: +/user/username/projects/solution/app/src: *new* {} /user/username/projects/solution/shared: {} -/user/username/projects/solution/app/src: *new* +/user/username/projects/solution/shared/src: {} 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 4f09fa62e320d..0a2ce0d39fdc2 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 @@ -135,21 +135,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/solution/api/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/solution/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/solution/api/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/solution/shared/tsconfig.json: *new* +/user/username/projects/solution/api/tsconfig.json: *new* {} /user/username/projects/solution/shared/src/index.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/solution/shared/tsconfig.json: *new* {} /user/username/projects/solution/tsconfig.json: *new* {} @@ -157,10 +157,10 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/solution/api/src: *new* {} -/user/username/projects/solution/shared/src: *new* - {} /user/username/projects/solution/shared: *new* {} +/user/username/projects/solution/shared/src: *new* + {} Before request @@ -342,39 +342,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/solution/api/node_modules/@types: {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: +/user/username/projects/solution/app/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/solution/node_modules/@types: {"pollingInterval":500} /user/username/projects/solution/shared/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/app/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: + {} /user/username/projects/solution/api/tsconfig.json: {} -/user/username/projects/solution/shared/tsconfig.json: +/user/username/projects/solution/app/src/app.ts: *new* + {} +/user/username/projects/solution/app/tsconfig.json: *new* {} /user/username/projects/solution/shared/src/index.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/solution/shared/tsconfig.json: {} /user/username/projects/solution/tsconfig.json: {} -/user/username/projects/solution/app/tsconfig.json: *new* - {} -/user/username/projects/solution/app/src/app.ts: *new* - {} FsWatchesRecursive:: /user/username/projects/solution/api/src: {} -/user/username/projects/solution/shared/src: +/user/username/projects/solution/app/src: *new* {} /user/username/projects/solution/shared: {} -/user/username/projects/solution/app/src: *new* +/user/username/projects/solution/shared/src: {} 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 530ad7ccf4a5a..8db312d103dcf 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 @@ -368,58 +368,58 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/core/tsconfig.json: *new* {} -/user/username/projects/myproject/indirect/tsconfig.json: *new* - {} /user/username/projects/myproject/coreRef1/tsconfig.json: *new* {} -/user/username/projects/myproject/noCoreRef1/tsconfig.json: *new* +/user/username/projects/myproject/coreRef2/tsconfig.json: *new* {} -/user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json: *new* +/user/username/projects/myproject/coreRef3/tsconfig.json: *new* {} -/user/username/projects/myproject/coreRef2/tsconfig.json: *new* +/user/username/projects/myproject/indirect/tsconfig.json: *new* + {} +/user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json: *new* {} /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json: *new* {} -/user/username/projects/myproject/coreRef3/tsconfig.json: *new* +/user/username/projects/myproject/indirectNoCoreRef/tsconfig.json: *new* {} -/user/username/projects/myproject/refToCoreRef3/tsconfig.json: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/indirectNoCoreRef/tsconfig.json: *new* +/user/username/projects/myproject/noCoreRef1/tsconfig.json: *new* {} /user/username/projects/myproject/noCoreRef2/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/refToCoreRef3/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/core: *new* {} -/user/username/projects/myproject/indirect: *new* - {} /user/username/projects/myproject/coreRef1: *new* {} -/user/username/projects/myproject/noCoreRef1: *new* +/user/username/projects/myproject/coreRef2: *new* {} -/user/username/projects/myproject/indirectDisabledChildLoad1: *new* +/user/username/projects/myproject/coreRef3: *new* {} -/user/username/projects/myproject/coreRef2: *new* +/user/username/projects/myproject/indirect: *new* + {} +/user/username/projects/myproject/indirectDisabledChildLoad1: *new* {} /user/username/projects/myproject/indirectDisabledChildLoad2: *new* {} -/user/username/projects/myproject/coreRef3: *new* +/user/username/projects/myproject/indirectNoCoreRef: *new* {} -/user/username/projects/myproject/refToCoreRef3: *new* +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/indirectNoCoreRef: *new* +/user/username/projects/myproject/noCoreRef1: *new* {} /user/username/projects/myproject/noCoreRef2: *new* {} +/user/username/projects/myproject/refToCoreRef3: *new* + {} Before request @@ -477,68 +477,68 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/core/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/core/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/core/tsconfig.json: {} -/user/username/projects/myproject/indirect/tsconfig.json: - {} /user/username/projects/myproject/coreRef1/tsconfig.json: {} -/user/username/projects/myproject/noCoreRef1/tsconfig.json: +/user/username/projects/myproject/coreRef2/tsconfig.json: {} -/user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json: +/user/username/projects/myproject/coreRef3/tsconfig.json: {} -/user/username/projects/myproject/coreRef2/tsconfig.json: +/user/username/projects/myproject/indirect/tsconfig.json: + {} +/user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json: {} /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json: {} -/user/username/projects/myproject/coreRef3/tsconfig.json: +/user/username/projects/myproject/indirectNoCoreRef/tsconfig.json: {} -/user/username/projects/myproject/refToCoreRef3/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/indirectNoCoreRef/tsconfig.json: +/user/username/projects/myproject/noCoreRef1/tsconfig.json: {} /user/username/projects/myproject/noCoreRef2/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/refToCoreRef3/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/core: {} -/user/username/projects/myproject/indirect: - {} /user/username/projects/myproject/coreRef1: {} -/user/username/projects/myproject/noCoreRef1: +/user/username/projects/myproject/coreRef2: {} -/user/username/projects/myproject/indirectDisabledChildLoad1: +/user/username/projects/myproject/coreRef3: {} -/user/username/projects/myproject/coreRef2: +/user/username/projects/myproject/indirect: + {} +/user/username/projects/myproject/indirectDisabledChildLoad1: {} /user/username/projects/myproject/indirectDisabledChildLoad2: {} -/user/username/projects/myproject/coreRef3: +/user/username/projects/myproject/indirectNoCoreRef: {} -/user/username/projects/myproject/refToCoreRef3: +/user/username/projects/myproject/main: {} -/user/username/projects/myproject/indirectNoCoreRef: +/user/username/projects/myproject/noCoreRef1: {} /user/username/projects/myproject/noCoreRef2: {} +/user/username/projects/myproject/refToCoreRef3: + {} Before request @@ -723,91 +723,91 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/core/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/core/src/file1.d.ts: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/coreRef1/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/core/node_modules/@types: +/user/username/projects/myproject/coreRef3/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/indirect/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/coreRef1/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/indirectDisabledChildLoad1/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/indirectDisabledChildLoad2/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/refToCoreRef3/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/coreRef3/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/core/src/file1.d.ts: *new* - {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/core/tsconfig.json: {} -/user/username/projects/myproject/indirect/tsconfig.json: +/user/username/projects/myproject/coreRef1/src/file1.ts: *new* {} /user/username/projects/myproject/coreRef1/tsconfig.json: {} -/user/username/projects/myproject/noCoreRef1/tsconfig.json: - {} -/user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json: - {} /user/username/projects/myproject/coreRef2/tsconfig.json: {} -/user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json: +/user/username/projects/myproject/coreRef3/src/file1.ts: *new* {} /user/username/projects/myproject/coreRef3/tsconfig.json: {} -/user/username/projects/myproject/refToCoreRef3/tsconfig.json: +/user/username/projects/myproject/indirect/src/file1.ts: *new* {} -/user/username/projects/myproject/indirectNoCoreRef/tsconfig.json: +/user/username/projects/myproject/indirect/tsconfig.json: {} -/user/username/projects/myproject/noCoreRef2/tsconfig.json: +/user/username/projects/myproject/indirectDisabledChildLoad1/src/file1.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json: {} -/user/username/projects/myproject/indirect/src/file1.ts: *new* +/user/username/projects/myproject/indirectDisabledChildLoad2/src/file1.ts: *new* {} -/user/username/projects/myproject/coreRef1/src/file1.ts: *new* +/user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json: {} -/user/username/projects/myproject/indirectDisabledChildLoad1/src/file1.ts: *new* +/user/username/projects/myproject/indirectNoCoreRef/tsconfig.json: {} -/user/username/projects/myproject/indirectDisabledChildLoad2/src/file1.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/noCoreRef1/tsconfig.json: + {} +/user/username/projects/myproject/noCoreRef2/tsconfig.json: {} /user/username/projects/myproject/refToCoreRef3/src/file1.ts: *new* {} -/user/username/projects/myproject/coreRef3/src/file1.ts: *new* +/user/username/projects/myproject/refToCoreRef3/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/core: {} -/user/username/projects/myproject/indirect: - {} /user/username/projects/myproject/coreRef1: {} -/user/username/projects/myproject/noCoreRef1: +/user/username/projects/myproject/coreRef2: {} -/user/username/projects/myproject/indirectDisabledChildLoad1: +/user/username/projects/myproject/coreRef3: {} -/user/username/projects/myproject/coreRef2: +/user/username/projects/myproject/indirect: + {} +/user/username/projects/myproject/indirectDisabledChildLoad1: {} /user/username/projects/myproject/indirectDisabledChildLoad2: {} -/user/username/projects/myproject/coreRef3: +/user/username/projects/myproject/indirectNoCoreRef: {} -/user/username/projects/myproject/refToCoreRef3: +/user/username/projects/myproject/main: {} -/user/username/projects/myproject/indirectNoCoreRef: +/user/username/projects/myproject/noCoreRef1: {} /user/username/projects/myproject/noCoreRef2: {} +/user/username/projects/myproject/refToCoreRef3: + {} 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 fd339e4ed3cc9..7c55da7450f1d 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 @@ -219,41 +219,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/packages/consumer/node_modules: *new* +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: *new* +/user/username/projects/myproject/packages/consumer/node_modules: *new* {"pollingInterval":500} /user/username/projects/myproject/packages/consumer/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: *new* + {} /user/username/projects/myproject/packages/consumer/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/emit-composite/tsconfig.json: *new* +/user/username/projects/myproject/packages/emit-composite/package.json: *new* {} /user/username/projects/myproject/packages/emit-composite/src/index.js: *new* {} /user/username/projects/myproject/packages/emit-composite/src/testModule.js: *new* {} -/a/lib/lib.d.ts: *new* - {} -/user/username/projects/myproject/packages/emit-composite/package.json: *new* +/user/username/projects/myproject/packages/emit-composite/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/consumer/src: *new* +/user/username/projects/myproject/node_modules: *new* {} -/user/username/projects/myproject/packages/emit-composite/src: *new* +/user/username/projects/myproject/packages/consumer/src: *new* {} /user/username/projects/myproject/packages/emit-composite: *new* {} -/user/username/projects/myproject/node_modules: *new* +/user/username/projects/myproject/packages/emit-composite/src: *new* {} Before request 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 834ceec571781..a39eddba21bbe 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 @@ -111,20 +111,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/solution/compiler/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/solution/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: *new* + {} /user/username/projects/solution/compiler/tsconfig.json: *new* {} /user/username/projects/solution/compiler/types.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} Before request 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 0b1ad4147367d..87658c04c7872 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 cd770ab91ecfd..eb6a06d54a878 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 46c570c42e42c..50bb9102cb40d 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 @@ -277,10 +277,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -355,16 +355,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -439,22 +439,22 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -487,24 +487,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -583,22 +583,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -892,24 +892,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -955,22 +955,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: @@ -1016,24 +1016,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1073,26 +1073,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1156,10 +1156,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/dependency/node_modules/@types: @@ -1172,14 +1172,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 363d46392924b..295dadc5d75b2 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -488,20 +488,20 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts: @@ -579,26 +579,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -888,28 +888,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -952,22 +952,22 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -1013,26 +1013,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1068,28 +1068,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1151,16 +1151,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1169,10 +1169,10 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 d52a878c16241..122f0b5aca176 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 @@ -277,10 +277,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -355,16 +355,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -439,22 +439,22 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -746,26 +746,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -807,22 +807,22 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -866,26 +866,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -921,28 +921,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1004,16 +1004,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1022,10 +1022,10 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 718d3e2563038..836253988a44a 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 ead24bb7b2c4f..c7983e6a2d5d6 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 4d71d80829950..01c45d1b6473c 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 @@ -282,10 +282,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -360,16 +360,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -445,26 +445,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -487,24 +487,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -582,22 +582,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -891,24 +891,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -954,22 +954,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: @@ -1015,24 +1015,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1072,26 +1072,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1154,10 +1154,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/dependency/node_modules/@types: @@ -1170,14 +1170,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 4e0779c096066..b36dbcf592257 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -488,20 +488,20 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts.map: @@ -579,26 +579,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -888,28 +888,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -951,26 +951,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: @@ -1012,28 +1012,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1069,30 +1069,30 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1155,16 +1155,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1173,12 +1173,12 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 97057038a3793..85addf92cd164 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 @@ -282,10 +282,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -360,16 +360,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -445,26 +445,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -754,28 +754,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -817,26 +817,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: @@ -878,28 +878,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -935,30 +935,30 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1021,16 +1021,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1039,12 +1039,12 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 afc938a5626c3..d7a188edf9848 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/rename-locations.js @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -761,24 +761,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -824,22 +824,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: @@ -885,24 +885,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -942,26 +942,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1024,10 +1024,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/dependency/node_modules/@types: @@ -1040,14 +1040,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 7c9960183a20d..620eed69b97f8 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 f153821263e12..d87ea6be246dc 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 b020a0d201be9..3647e34458876 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 6a7cbccaf93f2..fdf5eb16294cd 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 6a0962344bae2..27939cccd38ec 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 @@ -277,10 +277,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -355,16 +355,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -439,22 +439,22 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -487,24 +487,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -583,22 +583,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -892,24 +892,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -955,22 +955,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: @@ -1016,24 +1016,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1073,26 +1073,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1156,10 +1156,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/dependency/node_modules/@types: @@ -1172,14 +1172,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 6aa6e5b31f1d7..3c553e67e1da9 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -488,20 +488,20 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts: @@ -579,26 +579,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -888,28 +888,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -952,22 +952,22 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -1013,26 +1013,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1068,28 +1068,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1151,16 +1151,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1169,10 +1169,10 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 6c7d5215d182a..c4a94213fb990 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 @@ -277,10 +277,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -355,16 +355,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -439,22 +439,22 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -746,26 +746,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -807,22 +807,22 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -866,26 +866,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -921,28 +921,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1004,16 +1004,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1022,10 +1022,10 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 66674c55cfcb4..fd8cf36166bee 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 b206ff762f962..f9153936106f5 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 85f9996a56338..d994a917edf4d 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 @@ -282,10 +282,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -360,16 +360,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -445,26 +445,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -487,24 +487,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -582,22 +582,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -891,24 +891,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -954,22 +954,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: @@ -1015,24 +1015,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1072,26 +1072,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1154,10 +1154,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/dependency/node_modules/@types: @@ -1170,14 +1170,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 8e233e0133c17..2035514e856ff 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -488,20 +488,20 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts.map: @@ -579,26 +579,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -888,28 +888,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -951,26 +951,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: @@ -1012,28 +1012,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1069,30 +1069,30 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1155,16 +1155,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1173,12 +1173,12 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 770f56b1eb68a..8c99713e89d2f 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 @@ -282,10 +282,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -360,16 +360,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -445,26 +445,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -754,28 +754,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -817,26 +817,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: @@ -878,28 +878,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -935,30 +935,30 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1021,16 +1021,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1039,12 +1039,12 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 f1b3cfe7a6c41..6ef485552779a 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 9aec6e8ba081c..b72c979d16da9 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 0330d7c1c4868..c718f09d975ba 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/rename-locations.js @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -761,24 +761,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -824,22 +824,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: @@ -885,24 +885,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -942,26 +942,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1024,10 +1024,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/dependency/node_modules/@types: @@ -1040,14 +1040,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 49c44b93b7a19..e9f7a5a5d9433 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 0c2748b3e9e56..9a7417fb4585b 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 f09e3259ced74..1d74358f7e74b 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 @@ -122,10 +122,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -200,16 +200,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -284,22 +284,22 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -591,26 +591,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -652,22 +652,22 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -711,26 +711,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -766,28 +766,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -849,16 +849,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -867,10 +867,10 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 1da8dcd8c8665..eca3ab55ef56d 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 8bc091a55631f..014f682163e2a 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 ff91a86226802..535766645fcac 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 @@ -277,10 +277,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -355,16 +355,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -439,22 +439,22 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -487,24 +487,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -583,22 +583,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -892,24 +892,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -955,22 +955,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: @@ -1016,24 +1016,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1073,26 +1073,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1156,10 +1156,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/dependency/node_modules/@types: @@ -1172,14 +1172,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 d3a090f81ec3f..6266dc34b37c2 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -488,20 +488,20 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts: @@ -579,26 +579,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -888,28 +888,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -952,22 +952,22 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -1013,26 +1013,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1068,28 +1068,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1151,16 +1151,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1169,10 +1169,10 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 9258630ffd0bf..bbeb1b27806ca 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 @@ -277,10 +277,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -355,16 +355,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -439,22 +439,22 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -746,26 +746,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -807,22 +807,22 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -866,26 +866,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -921,28 +921,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1004,16 +1004,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1022,10 +1022,10 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 e58837c7e725e..cee83530e1762 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 c49694d1a59b8..4257984fd9314 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 c88c0d06c8e5e..35ad38bee52a0 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 @@ -282,10 +282,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -360,16 +360,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -445,26 +445,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -487,24 +487,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -582,22 +582,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -891,24 +891,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -954,22 +954,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: @@ -1015,24 +1015,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1072,26 +1072,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1154,10 +1154,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/dependency/node_modules/@types: @@ -1170,14 +1170,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 34a320fa53c06..5ea8f1c0e0e36 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -488,20 +488,20 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts.map: @@ -579,26 +579,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -888,28 +888,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -951,26 +951,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: @@ -1012,28 +1012,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1069,30 +1069,30 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1155,16 +1155,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1173,12 +1173,12 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 29ae294bebe87..882b64b341a35 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 @@ -282,10 +282,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -360,16 +360,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -445,26 +445,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -754,28 +754,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -817,26 +817,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: @@ -878,28 +878,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -935,30 +935,30 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1021,16 +1021,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1039,12 +1039,12 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 7e119f6901930..9238cecad32e4 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/rename-locations.js @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -761,24 +761,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -824,22 +824,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: @@ -885,24 +885,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -942,26 +942,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: @@ -1024,10 +1024,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/dependency/node_modules/@types: @@ -1040,14 +1040,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} 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 60e344f9eb291..12999e91770da 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 05d1bd00c2b05..6b5afc270ca7f 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 @@ -285,10 +285,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: *new* @@ -363,16 +363,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} @@ -452,22 +452,22 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: 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 452cb366aec60..a111888b7db52 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 @@ -290,18 +290,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -373,32 +373,32 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/main: + {} Before request @@ -471,36 +471,36 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -558,38 +558,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} 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 dbb2708831b77..65493ff3452b8 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 @@ -290,18 +290,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -373,32 +373,32 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/main: + {} Before request @@ -471,36 +471,36 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -558,38 +558,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} 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 c3e029b865758..910a43f856ef5 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 @@ -278,16 +278,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: *new* + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -359,30 +359,30 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/main: + {} Before request @@ -455,34 +455,34 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -603,36 +603,36 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -658,40 +658,40 @@ export declare function fn5(): void; PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/decls/fns.d.ts: *new* + {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -766,38 +766,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1538,40 +1538,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1615,42 +1615,42 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1690,40 +1690,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1761,42 +1761,42 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: *new* + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1832,44 +1832,44 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1957,16 +1957,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1975,17 +1975,17 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -1995,9 +1995,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} 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 3b56d5a36fffa..428c8ca22cb69 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 @@ -290,18 +290,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -373,32 +373,32 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/main: + {} Before request @@ -471,36 +471,36 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -558,38 +558,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -705,27 +705,27 @@ Before request //// [/user/username/projects/myproject/decls/FnS.d.ts] deleted PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/random/tsconfig.json: {} FsWatches *deleted*:: @@ -733,12 +733,12 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1082,38 +1082,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1405,40 +1405,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1483,26 +1483,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -1513,12 +1513,12 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1558,38 +1558,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1627,40 +1627,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1696,42 +1696,42 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1814,18 +1814,18 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1834,13 +1834,13 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -1850,9 +1850,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} 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 5f04e55d00f39..bf4fce8fe6b27 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 @@ -278,16 +278,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: *new* + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -359,30 +359,30 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/main: + {} Before request @@ -455,34 +455,34 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -811,36 +811,36 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1132,38 +1132,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1207,26 +1207,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -1235,12 +1235,12 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1280,38 +1280,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1349,40 +1349,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1418,42 +1418,42 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1536,18 +1536,18 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1556,13 +1556,13 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -1572,9 +1572,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} 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 bdc3a1f26cb5d..eab2643f2429f 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 @@ -290,18 +290,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -373,32 +373,32 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/main: + {} Before request @@ -471,36 +471,36 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -558,38 +558,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} 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 362ed6ef04e03..7f1636e048362 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 @@ -290,18 +290,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -373,32 +373,32 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/main: + {} Before request @@ -471,36 +471,36 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -558,38 +558,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} 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 15fb4846c9c92..5d9fce5ac052c 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 @@ -287,18 +287,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -370,32 +370,32 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/main: + {} Before request @@ -468,36 +468,36 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -555,38 +555,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -668,40 +668,40 @@ Before request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -760,38 +760,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1532,40 +1532,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1609,29 +1609,29 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/random/tsconfig.json: {} FsWatches *deleted*:: @@ -1639,12 +1639,12 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1684,40 +1684,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/main.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1755,42 +1755,42 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1826,44 +1826,44 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1950,16 +1950,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1968,17 +1968,17 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -1988,9 +1988,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} 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 f6a2c60085e7c..a9bd0207982f8 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 @@ -290,18 +290,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -373,32 +373,32 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/main: + {} Before request @@ -471,36 +471,36 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -558,38 +558,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -704,26 +704,26 @@ Before request //// [/user/username/projects/myproject/decls/FnS.d.ts.map] deleted PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -732,12 +732,12 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -796,38 +796,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1393,40 +1393,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1470,28 +1470,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -1500,12 +1500,12 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1545,40 +1545,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1616,42 +1616,42 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1687,44 +1687,44 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1811,18 +1811,18 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1831,15 +1831,15 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/fns.ts: + {} /user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -1849,9 +1849,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} 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 9c93f9ba65de5..56f58afabb696 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 @@ -287,18 +287,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -370,32 +370,32 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/main: + {} Before request @@ -468,36 +468,36 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -555,38 +555,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1149,40 +1149,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1226,28 +1226,28 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -1256,12 +1256,12 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1301,40 +1301,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1372,42 +1372,42 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1443,44 +1443,44 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1567,18 +1567,18 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1587,15 +1587,15 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/fns.ts: + {} /user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -1605,9 +1605,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} 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 1462da8999f70..ddafe0823de71 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 @@ -290,18 +290,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -373,32 +373,32 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/main: + {} Before request @@ -471,36 +471,36 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -558,38 +558,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1327,40 +1327,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1404,29 +1404,29 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/random/tsconfig.json: {} FsWatches *deleted*:: @@ -1434,12 +1434,12 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1479,40 +1479,40 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/main.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1550,42 +1550,42 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1621,44 +1621,44 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1745,16 +1745,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1763,17 +1763,17 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -1783,9 +1783,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} 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 172efc891d18a..8057660a5c690 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 @@ -290,18 +290,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -373,32 +373,32 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/main: + {} Before request @@ -471,36 +471,36 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -558,38 +558,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} 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 bbfb610546523..cbdec53210162 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 @@ -290,18 +290,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -373,32 +373,32 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/main: + {} Before request @@ -471,36 +471,36 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -558,38 +558,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} 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 48bc6bf04af06..437853e4bb011 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,21 +384,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} FsWatches *deleted*:: @@ -406,11 +406,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -484,33 +484,33 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -668,37 +668,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 127bd1fda0173..8f314a0ee39c6 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,21 +384,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} FsWatches *deleted*:: @@ -406,11 +406,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -484,33 +484,33 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -668,37 +668,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 69d4be65fcd4f..ce3574c2a739d 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 @@ -302,21 +302,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -376,21 +376,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} FsWatches *deleted*:: @@ -398,11 +398,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -476,33 +476,33 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -659,35 +659,35 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -714,39 +714,39 @@ export declare function fn5(): void; PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1113,37 +1113,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1576,39 +1576,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1653,41 +1653,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1728,39 +1728,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1799,41 +1799,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: *new* + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1870,43 +1870,43 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1995,16 +1995,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -2013,17 +2013,17 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -2033,9 +2033,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 0c3ca87a5f88a..f54d06a40af61 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,21 +384,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} FsWatches *deleted*:: @@ -406,11 +406,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -484,33 +484,33 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -668,37 +668,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -716,39 +716,39 @@ Before request //// [/user/username/projects/myproject/decls/FnS.d.ts] deleted PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} FsWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1117,37 +1117,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1580,39 +1580,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1658,25 +1658,25 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -1688,11 +1688,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1733,37 +1733,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1802,39 +1802,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: *new* + {} +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1871,41 +1871,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1992,18 +1992,18 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -2012,13 +2012,13 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -2028,9 +2028,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 4335beaa5fffd..08d5de0cd47e1 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 @@ -302,21 +302,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -376,21 +376,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} FsWatches *deleted*:: @@ -398,11 +398,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -476,33 +476,33 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -867,35 +867,35 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1328,37 +1328,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1403,25 +1403,25 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -1431,11 +1431,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1476,37 +1476,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1545,39 +1545,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: *new* + {} +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1614,41 +1614,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1735,18 +1735,18 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1755,13 +1755,13 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -1771,9 +1771,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 c33fca13cf4a5..a176f9bc6bd48 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,21 +384,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} FsWatches *deleted*:: @@ -406,11 +406,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -484,33 +484,33 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -668,37 +668,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 029a69f404a8d..8053d0a56feff 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,21 +384,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} FsWatches *deleted*:: @@ -406,11 +406,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -484,33 +484,33 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -668,37 +668,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 63445d5b83c8c..05b2d015273de 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 @@ -307,21 +307,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -381,21 +381,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} FsWatches *deleted*:: @@ -403,11 +403,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -481,33 +481,33 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -665,37 +665,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -714,39 +714,39 @@ Before request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1115,37 +1115,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1578,39 +1578,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1655,41 +1655,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1730,39 +1730,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1801,41 +1801,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: *new* + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1872,43 +1872,43 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1996,16 +1996,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -2014,17 +2014,17 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -2034,9 +2034,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 5c6e65c7864e2..0d0fe147a1b52 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,21 +384,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} FsWatches *deleted*:: @@ -406,11 +406,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -484,33 +484,33 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -668,37 +668,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -715,39 +715,39 @@ Before request //// [/user/username/projects/myproject/decls/FnS.d.ts.map] deleted PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: - {} FsWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts.map: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1116,37 +1116,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1579,39 +1579,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1656,41 +1656,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: - {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1731,39 +1731,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1802,41 +1802,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/fns.ts: *new* + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1873,43 +1873,43 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1997,18 +1997,18 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -2017,15 +2017,15 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -2035,9 +2035,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 0fee71b46b818..ed74383d11272 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 @@ -307,21 +307,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -381,21 +381,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} FsWatches *deleted*:: @@ -403,11 +403,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -481,33 +481,33 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -873,37 +873,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1336,39 +1336,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1413,41 +1413,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: - {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1488,39 +1488,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1559,41 +1559,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/fns.ts: *new* + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1630,43 +1630,43 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1754,18 +1754,18 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1774,15 +1774,15 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -1792,9 +1792,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 a46b9e4985ff4..ba5048c892df5 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,21 +384,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} FsWatches *deleted*:: @@ -406,11 +406,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -484,33 +484,33 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -668,37 +668,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 88821bd12d047..eec0053f7e366 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,21 +384,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} FsWatches *deleted*:: @@ -406,11 +406,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -484,33 +484,33 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -668,37 +668,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 6b399f2676a53..2f90776227395 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,21 +384,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} FsWatches *deleted*:: @@ -406,11 +406,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -484,33 +484,33 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -876,37 +876,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1339,39 +1339,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1416,41 +1416,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1491,39 +1491,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1562,41 +1562,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: *new* + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1633,43 +1633,43 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1757,16 +1757,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1775,17 +1775,17 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -1795,9 +1795,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 37a2cae0d61dc..fde287f2c7732 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,21 +384,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} FsWatches *deleted*:: @@ -406,11 +406,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -484,33 +484,33 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -668,37 +668,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 94fc1eb9ac48d..a2dcfd8da5868 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,21 +384,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} FsWatches *deleted*:: @@ -406,11 +406,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -484,33 +484,33 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -668,37 +668,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 c0e4b8976b9f2..79cf78f81b62a 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 @@ -149,20 +149,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -223,21 +223,21 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} FsWatches *deleted*:: @@ -245,10 +245,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} Before request @@ -323,32 +323,32 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -714,34 +714,34 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1175,36 +1175,36 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1250,25 +1250,25 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -1278,10 +1278,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1323,36 +1323,36 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1392,38 +1392,38 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: *new* + {} +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1461,40 +1461,40 @@ After request PolledWatches:: /user/username/projects/myproject/decls: {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1580,20 +1580,20 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/decls: {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1602,13 +1602,13 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -1618,7 +1618,7 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} 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 4172f2d482e35..5ca429c4fb058 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 @@ -311,21 +311,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,31 +384,31 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -482,35 +482,35 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -569,37 +569,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 d4d02422b77e4..8a1423e5ae820 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 @@ -311,21 +311,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,31 +384,31 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -482,35 +482,35 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -569,37 +569,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 13854fe343d76..67c3f09b51a30 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 @@ -299,19 +299,19 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -370,29 +370,29 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -466,33 +466,33 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -614,35 +614,35 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -669,39 +669,39 @@ export declare function fn5(): void; PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -777,37 +777,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1549,39 +1549,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1626,41 +1626,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1701,39 +1701,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1772,41 +1772,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: *new* + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1843,43 +1843,43 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1968,16 +1968,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1986,17 +1986,17 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -2006,9 +2006,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 943020260f394..90ebe972f43b5 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 @@ -311,21 +311,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,31 +384,31 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -482,35 +482,35 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -569,37 +569,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -716,39 +716,39 @@ Before request //// [/user/username/projects/myproject/decls/FnS.d.ts] deleted PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} FsWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1093,37 +1093,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1416,39 +1416,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1494,25 +1494,25 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -1524,11 +1524,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1569,37 +1569,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1638,39 +1638,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: *new* + {} +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1707,41 +1707,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1825,18 +1825,18 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1845,13 +1845,13 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -1861,9 +1861,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 671c1d133f8bd..20b39df8cb538 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 @@ -299,19 +299,19 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -370,29 +370,29 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -466,33 +466,33 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -822,35 +822,35 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1143,37 +1143,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1218,25 +1218,25 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -1246,11 +1246,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1291,37 +1291,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1360,39 +1360,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: *new* + {} +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1429,41 +1429,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1547,18 +1547,18 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1567,13 +1567,13 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -1583,9 +1583,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 32a4133237f45..f388b81649983 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 @@ -311,21 +311,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,31 +384,31 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -482,35 +482,35 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -569,37 +569,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 6bae7bbff8919..512c6a2ba3167 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 @@ -311,21 +311,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,31 +384,31 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -482,35 +482,35 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -569,37 +569,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 4c67762c63a2a..436a74f56095d 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 @@ -308,21 +308,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -381,31 +381,31 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -479,35 +479,35 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -566,37 +566,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -679,39 +679,39 @@ Before request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -771,37 +771,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1543,39 +1543,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1620,29 +1620,29 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatches *deleted*:: @@ -1650,11 +1650,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1695,39 +1695,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1766,41 +1766,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1837,43 +1837,43 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1961,16 +1961,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1979,17 +1979,17 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -1999,9 +1999,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 e11442e60a502..0d2c44dec0524 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 @@ -311,21 +311,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,31 +384,31 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -482,35 +482,35 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -569,37 +569,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -715,25 +715,25 @@ Before request //// [/user/username/projects/myproject/decls/FnS.d.ts.map] deleted PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -743,11 +743,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -807,37 +807,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1404,39 +1404,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1481,27 +1481,27 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -1511,11 +1511,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1556,39 +1556,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1627,41 +1627,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1698,43 +1698,43 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1822,18 +1822,18 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1842,15 +1842,15 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -1860,9 +1860,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 7abf6cb35a5e1..e628ec855bbad 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 @@ -308,21 +308,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -381,31 +381,31 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -479,35 +479,35 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -566,37 +566,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1160,39 +1160,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1237,27 +1237,27 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -1267,11 +1267,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1312,39 +1312,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1383,41 +1383,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1454,43 +1454,43 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1578,18 +1578,18 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1598,15 +1598,15 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -1616,9 +1616,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 8ab1b359df810..918eb16afc205 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 @@ -311,21 +311,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,31 +384,31 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -482,35 +482,35 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -569,37 +569,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1338,39 +1338,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1415,29 +1415,29 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatches *deleted*:: @@ -1445,11 +1445,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1490,39 +1490,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1561,41 +1561,41 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1632,43 +1632,43 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1756,16 +1756,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1774,17 +1774,17 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: {} @@ -1794,9 +1794,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 901f0c75126c0..646b10d3fffad 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 @@ -311,21 +311,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,31 +384,31 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -482,35 +482,35 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -569,37 +569,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 b79980b460722..446903df0e224 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 @@ -311,21 +311,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -384,31 +384,31 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} Before request @@ -482,35 +482,35 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -569,37 +569,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 0e5195116ca46..e7f6c437b2e29 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 @@ -290,18 +290,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -372,26 +372,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -454,30 +454,30 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -723,32 +723,32 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -790,34 +790,34 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -855,19 +855,15 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} @@ -875,12 +871,16 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -916,19 +916,15 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} @@ -936,14 +932,18 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1008,10 +1008,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/main/node_modules/@types: @@ -1024,8 +1024,6 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: @@ -1034,6 +1032,8 @@ FsWatches *deleted*:: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1042,7 +1042,7 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} 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 1039c3cbfe8c3..9997e84a21b71 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 @@ -290,18 +290,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -372,26 +372,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -454,30 +454,30 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} 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 7dd203930b179..34b358edd3258 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 @@ -290,18 +290,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -372,26 +372,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -454,30 +454,30 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} 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 5998c71f6401a..fc074411ad851 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 @@ -278,16 +278,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: *new* + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -358,24 +358,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -520,30 +520,30 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -789,32 +789,32 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -856,34 +856,34 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -921,18 +921,14 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: @@ -941,12 +937,16 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -982,18 +982,14 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: @@ -1002,14 +998,18 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1074,10 +1074,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/main/node_modules/@types: @@ -1090,8 +1090,6 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: @@ -1100,6 +1098,8 @@ FsWatches *deleted*:: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1108,7 +1108,7 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} 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 de17781f72ec8..7dccf23954806 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 @@ -290,18 +290,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -372,26 +372,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -454,30 +454,30 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -497,32 +497,32 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -832,30 +832,30 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -899,16 +899,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -921,10 +921,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -962,26 +962,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1017,28 +1017,28 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1097,10 +1097,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/main/node_modules/@types: @@ -1113,10 +1113,10 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1125,7 +1125,7 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} 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 94fd2b444fe54..3f5bccb3ec383 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 @@ -278,16 +278,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: *new* + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -358,24 +358,24 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -673,26 +673,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -734,16 +734,16 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -752,10 +752,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -793,26 +793,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -848,28 +848,28 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -928,10 +928,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/main/node_modules/@types: @@ -944,10 +944,10 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -956,7 +956,7 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} 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 f0064d39ee01a..61e5f53168a0a 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 @@ -290,18 +290,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -372,26 +372,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -454,30 +454,30 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} 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 b9ad10aef0f30..806c621b278e3 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 @@ -290,18 +290,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -372,26 +372,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -454,30 +454,30 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} 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 49d3b63451212..b56968e834201 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 @@ -287,18 +287,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -369,26 +369,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -446,32 +446,32 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -492,30 +492,30 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -579,30 +579,30 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -848,32 +848,32 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -915,34 +915,34 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -980,19 +980,15 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} @@ -1000,12 +996,16 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1041,19 +1041,15 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} @@ -1061,14 +1057,18 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1133,10 +1133,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/main/node_modules/@types: @@ -1149,8 +1149,6 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: @@ -1159,6 +1157,8 @@ FsWatches *deleted*:: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1167,7 +1167,7 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} 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 da835c4b344d1..c9d1d7d9e87d8 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 @@ -290,18 +290,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -372,26 +372,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -454,30 +454,30 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -496,21 +496,21 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/random/tsconfig.json: {} FsWatches *deleted*:: @@ -518,10 +518,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -580,34 +580,34 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -849,36 +849,36 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -917,23 +917,23 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -945,10 +945,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -982,34 +982,34 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1041,36 +1041,36 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -1134,16 +1134,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1152,12 +1152,12 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1166,7 +1166,7 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} 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 a3d6044798ea5..99228e25df6c9 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 @@ -287,18 +287,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -369,26 +369,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -446,32 +446,32 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -713,34 +713,34 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -778,23 +778,23 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -804,10 +804,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -841,34 +841,34 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -900,36 +900,36 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -993,16 +993,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1011,12 +1011,12 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1025,7 +1025,7 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} 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 43201c17eaf75..bc68fdd229731 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 @@ -290,18 +290,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -372,26 +372,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -454,30 +454,30 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} 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 87290f5bac3c8..577c96229b2f2 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 @@ -290,18 +290,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/decls: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -372,26 +372,26 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -454,30 +454,30 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/decls: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} 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 dec440ea17bc2..019468f64368b 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -396,29 +396,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -717,31 +717,31 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -784,19 +784,19 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -806,11 +806,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -849,31 +849,31 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -910,33 +910,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1003,10 +1003,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/main/node_modules/@types: @@ -1019,14 +1019,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: - {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1035,9 +1035,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 3e1143a98a1a5..60037c0b0c97b 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -396,29 +396,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} 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 0570da58ceeda..b8ee668c96ded 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -396,29 +396,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} 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 f5b5efea838fe..1752e8386635e 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 @@ -302,21 +302,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -388,29 +388,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -772,31 +772,31 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -839,19 +839,19 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -861,11 +861,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -904,31 +904,31 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -965,33 +965,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1058,10 +1058,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/main/node_modules/@types: @@ -1074,14 +1074,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: - {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1090,9 +1090,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 d772487aefe00..51a09efc288cb 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -396,29 +396,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -773,31 +773,31 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -840,19 +840,19 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -862,11 +862,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -905,31 +905,31 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -966,33 +966,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1059,10 +1059,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/main/node_modules/@types: @@ -1075,14 +1075,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: - {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1091,9 +1091,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 6eaf52368bb54..a37aec88830bb 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 @@ -302,21 +302,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -388,29 +388,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -709,31 +709,31 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -776,19 +776,19 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -798,11 +798,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -841,31 +841,31 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -902,33 +902,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -995,10 +995,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/main/node_modules/@types: @@ -1011,14 +1011,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: - {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1027,9 +1027,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 5b823c298675f..da165459a0598 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -396,29 +396,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} 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 e4423708317fe..4bfed4bfb3808 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -396,29 +396,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} 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 6772b74ffc46f..9f04997169c2e 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 @@ -307,21 +307,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -393,29 +393,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -771,31 +771,31 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -838,19 +838,19 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -860,11 +860,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -903,31 +903,31 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -964,33 +964,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1057,10 +1057,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/main/node_modules/@types: @@ -1073,14 +1073,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: - {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1089,9 +1089,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 c3d8ae9940a1d..902bc2813d456 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -396,29 +396,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -772,31 +772,31 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -839,19 +839,19 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -861,11 +861,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -904,31 +904,31 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -965,33 +965,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1058,10 +1058,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/main/node_modules/@types: @@ -1074,14 +1074,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: - {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1090,9 +1090,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 b1f3886c44e01..48946e86fd737 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 @@ -307,21 +307,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -393,29 +393,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -714,31 +714,31 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -781,19 +781,19 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -803,11 +803,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -846,31 +846,31 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -907,33 +907,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1000,10 +1000,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/main/node_modules/@types: @@ -1016,14 +1016,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: - {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1032,9 +1032,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 1d610a558564f..4af5e881309f1 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -396,29 +396,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} 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 127830b7c1852..85531c02a5930 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -396,29 +396,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} 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 11a8cc26868f6..c8c5e26f70fbc 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -396,29 +396,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} 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 d157b7a6fd470..a5337991fbf2e 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 @@ -310,21 +310,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -396,29 +396,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} 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 3385b2e4b2ce1..5f264e255b74f 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 @@ -149,20 +149,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* - {} /user/username/projects/myproject/dependency: *new* {} +/user/username/projects/myproject/main: *new* + {} Before request @@ -235,28 +235,28 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: *new* {} @@ -556,30 +556,30 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -623,19 +623,19 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -645,10 +645,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -688,30 +688,30 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -749,32 +749,32 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/fns.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} /user/username/projects/myproject/random: {} @@ -840,10 +840,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/decls: @@ -858,14 +858,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/dependency/fns.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: - {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -874,7 +874,7 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: - {} /user/username/projects/myproject/dependency: {} +/user/username/projects/myproject/main: + {} 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 a8a8a9263a5f8..df57be923529f 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 @@ -311,21 +311,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -397,29 +397,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -483,33 +483,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -756,35 +756,35 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -827,37 +827,37 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -896,35 +896,35 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -961,37 +961,37 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1060,10 +1060,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/main/node_modules/@types: @@ -1076,18 +1076,18 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1096,9 +1096,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 2ed69a6ec6e11..b38daaaa70bd4 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 @@ -311,21 +311,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -397,29 +397,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -483,33 +483,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 82e955d2cd073..d661580211da8 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 @@ -311,21 +311,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -397,29 +397,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -483,33 +483,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 8e6db6215a091..ce3cffabaaa6a 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 @@ -299,19 +299,19 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -383,27 +383,27 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -549,33 +549,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -822,35 +822,35 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -893,37 +893,37 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -962,35 +962,35 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1027,37 +1027,37 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1126,10 +1126,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/main/node_modules/@types: @@ -1142,18 +1142,18 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1162,9 +1162,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 e48c03e97ec02..b22ba39c94e81 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 @@ -311,21 +311,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -397,29 +397,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -483,33 +483,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -530,35 +530,35 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -869,33 +869,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -940,17 +940,17 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -964,11 +964,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1007,29 +1007,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1066,31 +1066,31 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1153,10 +1153,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/main/node_modules/@types: @@ -1169,12 +1169,12 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1183,9 +1183,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 6fad6c9c582a4..8e3dc62da4465 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 @@ -299,19 +299,19 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -383,27 +383,27 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -702,29 +702,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -767,17 +767,17 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -787,11 +787,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -830,29 +830,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -889,31 +889,31 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -976,10 +976,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/main/node_modules/@types: @@ -992,12 +992,12 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} /user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1006,9 +1006,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 a1524cc90590c..ec6e096583d32 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 @@ -311,21 +311,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -397,29 +397,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -483,33 +483,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 bbc04ebe872e6..18c209d855059 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 @@ -311,21 +311,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -397,29 +397,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -483,33 +483,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 eec8b462ed045..565dab7996c61 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 @@ -308,21 +308,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -394,29 +394,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -475,35 +475,35 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -525,33 +525,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -616,33 +616,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -889,35 +889,35 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -960,37 +960,37 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/random/random.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1029,35 +1029,35 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: *new* {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1094,37 +1094,37 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1193,10 +1193,10 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /user/username/projects/myproject/main/node_modules/@types: @@ -1209,18 +1209,18 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} /user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} /user/username/projects/myproject/dependency/fns.ts: {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1229,9 +1229,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 a72cfc86496dd..448266705fa44 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 @@ -311,21 +311,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -397,29 +397,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -483,33 +483,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -529,23 +529,23 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatches *deleted*:: @@ -553,11 +553,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -617,37 +617,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -890,39 +890,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -962,25 +962,25 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -992,11 +992,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1031,37 +1031,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1094,39 +1094,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1194,16 +1194,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1212,14 +1212,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1228,9 +1228,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 43b570ab5b47f..67e580a6d27c7 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 @@ -308,21 +308,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -394,29 +394,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -475,35 +475,35 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -746,37 +746,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -815,25 +815,25 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} @@ -843,11 +843,11 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -882,37 +882,37 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/main/main.ts: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -945,39 +945,39 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: *new* {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} @@ -1045,16 +1045,16 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/decls/fns.d.ts.map: {"pollingInterval":2000} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: @@ -1063,14 +1063,14 @@ FsWatches:: {} FsWatches *deleted*:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /user/username/projects/myproject/main/main.ts: {} +/user/username/projects/myproject/main/tsconfig.json: + {} /user/username/projects/myproject/random/random.ts: {} @@ -1079,9 +1079,9 @@ FsWatchesRecursive:: {} FsWatchesRecursive *deleted*:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} 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 c867ec0d9eeba..0d0e4bb88c755 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 @@ -311,21 +311,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -397,29 +397,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -483,33 +483,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} 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 c9decba1e0cf9..aeeadc32b2c14 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 @@ -311,21 +311,21 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: *new* - {} -/user/username/projects/myproject/dependency/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/dependency/tsconfig.json: *new* + {} +/user/username/projects/myproject/main/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: *new* +/user/username/projects/myproject/decls: *new* {} /user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: *new* +/user/username/projects/myproject/main: *new* {} Before request @@ -397,29 +397,29 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: {} /user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: *new* {} @@ -483,33 +483,33 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/decls/fns.d.ts: {} /user/username/projects/myproject/decls/fns.d.ts.map: *new* {} /user/username/projects/myproject/dependency/fns.ts: *new* {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/random/tsconfig.json: + {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/decls: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/main: {} /user/username/projects/myproject/random: {} diff --git a/tests/baselines/reference/tsserver/projects/Orphan-source-files-are-handled-correctly-on-watch-trigger.js b/tests/baselines/reference/tsserver/projects/Orphan-source-files-are-handled-correctly-on-watch-trigger.js index 556b62cb5d16a..2e200e9d22003 100644 --- a/tests/baselines/reference/tsserver/projects/Orphan-source-files-are-handled-correctly-on-watch-trigger.js +++ b/tests/baselines/reference/tsserver/projects/Orphan-source-files-are-handled-correctly-on-watch-trigger.js @@ -85,11 +85,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/tsconfig.json diff --git a/tests/baselines/reference/tsserver/projects/deleted-files-affect-project-structure.js b/tests/baselines/reference/tsserver/projects/deleted-files-affect-project-structure.js index 457b928e22788..84c38308cfc22 100644 --- a/tests/baselines/reference/tsserver/projects/deleted-files-affect-project-structure.js +++ b/tests/baselines/reference/tsserver/projects/deleted-files-affect-project-structure.js @@ -120,7 +120,7 @@ Info seq [hh:mm:ss:mss] Projects: /dev/null/inferredProject2* After running Timeout callback:: count: 0 PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/f2: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} 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 35300e48b50c9..fd0aa3c939284 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 @@ -98,21 +98,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/playground/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/playground/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/playground/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/playground/tsconfig-json/src/src.ts: *new* {} /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/playground/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -143,23 +143,23 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/playground/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/playground/node_modules/@types: + {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/playground/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/playground/tests.ts: *new* {} /user/username/projects/myproject/playground/tsconfig-json/src/src.ts: {} /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/playground/tests.ts: *new* +/user/username/projects/myproject/playground/tsconfig.json: {} FsWatchesRecursive:: @@ -257,29 +257,29 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/playground/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/playground/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/playground/tsconfig-json/src/src.ts: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/playground/tsconfig-json/src/src.ts: + {} /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json: *new* {} FsWatches *deleted*:: -/user/username/projects/myproject/playground/tsconfig.json: +/user/username/projects/myproject/playground/tests.ts: {} /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts: {} -/user/username/projects/myproject/playground/tests.ts: +/user/username/projects/myproject/playground/tsconfig.json: {} FsWatchesRecursive:: @@ -386,34 +386,34 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/playground/node_modules/@types: - {"pollingInterval":500} +/user/username/projects/myproject/jsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/playground/jsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/playground/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/playground/tsconfig-json/jsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/playground/tsconfig-json/tests/tsconfig.json: *new* - {"pollingInterval":2000} /user/username/projects/myproject/playground/tsconfig-json/tests/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/playground/tsconfig-json/jsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/playground/jsconfig.json: *new* +/user/username/projects/myproject/playground/tsconfig-json/tests/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/myproject/playground/tsconfig-json/tests/tsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/myproject/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/playground/tsconfig-json/tests/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/playground/tsconfig-json/src/src.ts: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/playground/tsconfig-json/src/src.ts: + {} /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json: {} /user/username/projects/myproject/playground/tsconfig.json: *new* diff --git a/tests/baselines/reference/tsserver/projects/file-with-name-constructor.js-doesnt-cause-issue-with-typeAcquisition-when-safe-type-list.js b/tests/baselines/reference/tsserver/projects/file-with-name-constructor.js-doesnt-cause-issue-with-typeAcquisition-when-safe-type-list.js index 7f30b4bfdbb47..9e2afb297d6b3 100644 --- a/tests/baselines/reference/tsserver/projects/file-with-name-constructor.js-doesnt-cause-issue-with-typeAcquisition-when-safe-type-list.js +++ b/tests/baselines/reference/tsserver/projects/file-with-name-constructor.js-doesnt-cause-issue-with-typeAcquisition-when-safe-type-list.js @@ -70,9 +70,9 @@ Timeout callback:: count: 0 Immedidate callback:: count: 0 FsWatches:: -/a/b/f1.js: *new* - {} /a/b/constructor.js: *new* {} +/a/b/f1.js: *new* + {} /a/lib/lib.d.ts: *new* {} 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 21ec837a7c1a6..367e87483ff1a 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 @@ -185,12 +185,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/a/b/projects/config/file.ts: *new* + {} /a/b/projects/config/tsconfig.json: {} /a/lib/lib.d.ts: {} -/a/b/projects/config/file.ts: *new* - {} FsWatchesRecursive:: /a/b/projects/config: @@ -269,14 +269,14 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/b/projects/node_modules/@types: - {"pollingInterval":500} -/a/b/projects/files/tsconfig.json: *new* - {"pollingInterval":2000} /a/b/projects/files/jsconfig.json: *new* {"pollingInterval":2000} /a/b/projects/files/node_modules/@types: *new* {"pollingInterval":500} +/a/b/projects/files/tsconfig.json: *new* + {"pollingInterval":2000} +/a/b/projects/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /a/b/projects/config/node_modules/@types: @@ -287,10 +287,10 @@ FsWatches:: {} FsWatches *deleted*:: -/a/b/projects/config/tsconfig.json: - {} /a/b/projects/config/file.ts: {} +/a/b/projects/config/tsconfig.json: + {} FsWatchesRecursive *deleted*:: /a/b/projects/config: diff --git a/tests/baselines/reference/tsserver/projects/getting-errors-from-closed-script-info-does-not-throw-exception-because-of-getting-project-from-orphan-script-info.js b/tests/baselines/reference/tsserver/projects/getting-errors-from-closed-script-info-does-not-throw-exception-because-of-getting-project-from-orphan-script-info.js index aafa3546bffc0..a8c1014bd1aad 100644 --- a/tests/baselines/reference/tsserver/projects/getting-errors-from-closed-script-info-does-not-throw-exception-because-of-getting-project-from-orphan-script-info.js +++ b/tests/baselines/reference/tsserver/projects/getting-errors-from-closed-script-info-does-not-throw-exception-because-of-getting-project-from-orphan-script-info.js @@ -106,12 +106,12 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: +/a/b/app.ts: *new* + {} /a/b/tsconfig.json: {} /a/lib/lib.d.ts: {} -/a/b/app.ts: *new* - {} FsWatchesRecursive:: /a/b: diff --git a/tests/baselines/reference/tsserver/projects/handles-delayed-directory-watch-invoke-on-file-creation.js b/tests/baselines/reference/tsserver/projects/handles-delayed-directory-watch-invoke-on-file-creation.js index a4b611bc5c099..b9421d4033fd6 100644 --- a/tests/baselines/reference/tsserver/projects/handles-delayed-directory-watch-invoke-on-file-creation.js +++ b/tests/baselines/reference/tsserver/projects/handles-delayed-directory-watch-invoke-on-file-creation.js @@ -157,17 +157,17 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/project/sub/a.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/project/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -205,16 +205,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/users/username/projects/project/tsconfig.json: + {} FsWatches *deleted*:: /users/username/projects/project/sub/a.ts: @@ -485,26 +485,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} /users/username/projects/project/a.ts: *new* {"pollingInterval":500} -/users/username/projects/project/sub/tsconfig.json: *new* +/users/username/projects/project/jsconfig.json: *new* {"pollingInterval":2000} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/sub/jsconfig.json: *new* {"pollingInterval":2000} -/users/username/projects/project/jsconfig.json: *new* - {"pollingInterval":2000} /users/username/projects/project/sub/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/sub/tsconfig.json: *new* + {"pollingInterval":2000} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -643,28 +643,28 @@ After running Timeout callback:: count: 2 14: *ensureProjectForOpenFiles* PolledWatches:: -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/sub/node_modules/@types: {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/a.ts: {"pollingInterval":500} -/users/username/projects/project/sub/tsconfig.json: +/users/username/projects/project/jsconfig.json: {"pollingInterval":2000} /users/username/projects/project/sub/jsconfig.json: {"pollingInterval":2000} -/users/username/projects/project/jsconfig.json: +/users/username/projects/project/sub/tsconfig.json: {"pollingInterval":2000} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/users/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/projects/handles-the-missing-files-added-with-tripleslash-ref.js b/tests/baselines/reference/tsserver/projects/handles-the-missing-files-added-with-tripleslash-ref.js index 3f961f8e8e0ce..25644d8813eec 100644 --- a/tests/baselines/reference/tsserver/projects/handles-the-missing-files-added-with-tripleslash-ref.js +++ b/tests/baselines/reference/tsserver/projects/handles-the-missing-files-added-with-tripleslash-ref.js @@ -171,10 +171,10 @@ Info seq [hh:mm:ss:mss] Projects: /dev/null/inferredProject1* After running Timeout callback:: count: 0 FsWatches:: -/a/lib/lib.d.ts: - {} /a/b/commonfile2.ts: *new* {} +/a/lib/lib.d.ts: + {} Before request diff --git a/tests/baselines/reference/tsserver/projects/js-file-opened-is-in-configured-project-that-will-be-removed.js b/tests/baselines/reference/tsserver/projects/js-file-opened-is-in-configured-project-that-will-be-removed.js index ae339677dce7e..c35a6ff44f4a0 100644 --- a/tests/baselines/reference/tsserver/projects/js-file-opened-is-in-configured-project-that-will-be-removed.js +++ b/tests/baselines/reference/tsserver/projects/js-file-opened-is-in-configured-project-that-will-be-removed.js @@ -192,13 +192,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/apps/editor/scripts/createconfigvariable.js: *new* {} /user/username/projects/myproject/apps/editor/src/src.js: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -235,16 +235,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/apps/editor/scripts/createconfigvariable.js: {} /user/username/projects/myproject/apps/editor/src/src.js: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/mocks/cssmock.js: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -431,38 +431,38 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- TI:: Creating typing installer PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} +/user/username/projects/myproject/apps/editor/jsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/myproject/apps/editor/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/apps/node_modules/@types: *new* +/user/username/projects/myproject/apps/editor/scripts/jsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/apps/editor/scripts/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/myproject/apps/editor/scripts/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/apps/editor/scripts/jsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/apps/editor/jsconfig.json: *new* +/user/username/projects/myproject/apps/jsconfig.json: *new* {"pollingInterval":2000} +/user/username/projects/myproject/apps/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/apps/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/apps/jsconfig.json: *new* - {"pollingInterval":2000} /user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/apps/editor/scripts/node_modules/@types: *new* +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/apps/editor/src/src.js: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/apps/editor/tsconfig.json: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/apps/editor/scripts/createconfigvariable.js: @@ -545,42 +545,42 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/apps/editor/jsconfig.json: + {"pollingInterval":2000} +/user/username/projects/myproject/apps/editor/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/apps/editor/scripts/bower_components: *new* {"pollingInterval":500} -/user/username/projects/myproject/apps/editor/node_modules/@types: +/user/username/projects/myproject/apps/editor/scripts/jsconfig.json: + {"pollingInterval":2000} +/user/username/projects/myproject/apps/editor/scripts/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/apps/node_modules/@types: +/user/username/projects/myproject/apps/editor/scripts/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/apps/editor/scripts/tsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/apps/editor/scripts/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/apps/editor/jsconfig.json: +/user/username/projects/myproject/apps/jsconfig.json: {"pollingInterval":2000} +/user/username/projects/myproject/apps/node_modules/@types: + {"pollingInterval":500} /user/username/projects/myproject/apps/tsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/apps/jsconfig.json: - {"pollingInterval":2000} /user/username/projects/myproject/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/myproject/apps/editor/scripts/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/apps/editor/scripts/bower_components: *new* +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/apps/editor/scripts/node_modules: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject/apps/editor/src/src.js: {} -/a/lib/lib.d.ts: - {} /user/username/projects/myproject/apps/editor/tsconfig.json: {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/apps/editor/src: diff --git a/tests/baselines/reference/tsserver/projects/no-project-structure-update-on-directory-watch-invoke-on-open-file-save.js b/tests/baselines/reference/tsserver/projects/no-project-structure-update-on-directory-watch-invoke-on-open-file-save.js index e1c3399b4ba2b..2e15fd7705f2e 100644 --- a/tests/baselines/reference/tsserver/projects/no-project-structure-update-on-directory-watch-invoke-on-open-file-save.js +++ b/tests/baselines/reference/tsserver/projects/no-project-structure-update-on-directory-watch-invoke-on-open-file-save.js @@ -56,10 +56,10 @@ Immedidate callback:: count: 0 PolledWatches:: /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: /users/username/projects/project/tsconfig.json: *new* diff --git a/tests/baselines/reference/tsserver/projects/references-on-file-opened-is-in-configured-project-that-will-be-removed.js b/tests/baselines/reference/tsserver/projects/references-on-file-opened-is-in-configured-project-that-will-be-removed.js index de8d62b031271..b5c5e4a25853b 100644 --- a/tests/baselines/reference/tsserver/projects/references-on-file-opened-is-in-configured-project-that-will-be-removed.js +++ b/tests/baselines/reference/tsserver/projects/references-on-file-opened-is-in-configured-project-that-will-be-removed.js @@ -98,21 +98,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/playground/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/playground/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/playground/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/playground/tsconfig-json/src/src.ts: *new* {} /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/playground/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -143,23 +143,23 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/playground/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/playground/node_modules/@types: + {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/playground/tsconfig.json: +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/playground/tests.ts: *new* {} /user/username/projects/myproject/playground/tsconfig-json/src/src.ts: {} /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts: {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/playground/tests.ts: *new* +/user/username/projects/myproject/playground/tsconfig.json: {} FsWatchesRecursive:: @@ -257,29 +257,29 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/playground/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/playground/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/playground/tsconfig-json/src/src.ts: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/playground/tsconfig-json/src/src.ts: + {} /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json: *new* {} FsWatches *deleted*:: -/user/username/projects/myproject/playground/tsconfig.json: +/user/username/projects/myproject/playground/tests.ts: {} /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts: {} -/user/username/projects/myproject/playground/tests.ts: +/user/username/projects/myproject/playground/tsconfig.json: {} FsWatchesRecursive:: @@ -392,36 +392,36 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/playground/node_modules/@types: - {"pollingInterval":500} +/user/username/projects/myproject/jsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/node_modules/@types: +/user/username/projects/myproject/playground/jsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/playground/node_modules/@types: {"pollingInterval":500} +/user/username/projects/myproject/playground/tsconfig-json/jsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/playground/tsconfig-json/tests/tsconfig.json: *new* - {"pollingInterval":2000} /user/username/projects/myproject/playground/tsconfig-json/tests/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/playground/tsconfig-json/jsconfig.json: *new* +/user/username/projects/myproject/playground/tsconfig-json/tests/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/myproject/playground/tsconfig-json/tests/spec.d.ts: *new* {"pollingInterval":2000} -/user/username/projects/myproject/playground/jsconfig.json: *new* +/user/username/projects/myproject/playground/tsconfig-json/tests/tsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/myproject/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/playground/tsconfig-json/tests/node_modules/@types: *new* +/user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/playground/tsconfig-json/tests/spec.d.ts: *new* - {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/playground/tsconfig-json/src/src.ts: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/playground/tsconfig-json/src/src.ts: + {} /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json: {} /user/username/projects/myproject/playground/tsconfig.json: *new* diff --git a/tests/baselines/reference/tsserver/projects/reload-regular-file-after-closing.js b/tests/baselines/reference/tsserver/projects/reload-regular-file-after-closing.js index f40cb9eafcf0c..93a746ac9cbbc 100644 --- a/tests/baselines/reference/tsserver/projects/reload-regular-file-after-closing.js +++ b/tests/baselines/reference/tsserver/projects/reload-regular-file-after-closing.js @@ -219,10 +219,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/lib/lib.d.ts: - {} /a/b/lib.ts: *new* {} +/a/lib/lib.d.ts: + {} Before request diff --git a/tests/baselines/reference/tsserver/projects/requests-are-done-on-file-on-pendingReload-but-has-svc-for-previous-version.js b/tests/baselines/reference/tsserver/projects/requests-are-done-on-file-on-pendingReload-but-has-svc-for-previous-version.js index 3fe3f05272f9f..af390e6babba1 100644 --- a/tests/baselines/reference/tsserver/projects/requests-are-done-on-file-on-pendingReload-but-has-svc-for-previous-version.js +++ b/tests/baselines/reference/tsserver/projects/requests-are-done-on-file-on-pendingReload-but-has-svc-for-previous-version.js @@ -93,11 +93,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src/file1.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -140,10 +140,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/src/file1.ts: @@ -185,12 +185,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject/src/file2.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: diff --git a/tests/baselines/reference/tsserver/projects/should-create-new-inferred-projects-for-files-excluded-from-a-configured-project.js b/tests/baselines/reference/tsserver/projects/should-create-new-inferred-projects-for-files-excluded-from-a-configured-project.js index bee328fab4457..1f64bb758b301 100644 --- a/tests/baselines/reference/tsserver/projects/should-create-new-inferred-projects-for-files-excluded-from-a-configured-project.js +++ b/tests/baselines/reference/tsserver/projects/should-create-new-inferred-projects-for-files-excluded-from-a-configured-project.js @@ -70,10 +70,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/commonfile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] Scheduled: /a/b/tsconfig.json diff --git a/tests/baselines/reference/tsserver/projects/synchronizeProjectList-provides-redirect-info-when-requested.js b/tests/baselines/reference/tsserver/projects/synchronizeProjectList-provides-redirect-info-when-requested.js index 5c759060de212..b0289a3e3a5df 100644 --- a/tests/baselines/reference/tsserver/projects/synchronizeProjectList-provides-redirect-info-when-requested.js +++ b/tests/baselines/reference/tsserver/projects/synchronizeProjectList-provides-redirect-info-when-requested.js @@ -102,18 +102,18 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/users/username/projects/node_modules/@types: *new* + {"pollingInterval":500} /users/username/projects/project/a/node_modules/@types: *new* {"pollingInterval":500} /users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} -/users/username/projects/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/users/username/projects/project/a/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project/a: *new* @@ -197,20 +197,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/a/node_modules/@types: - {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/a/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/b/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/a/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/users/username/projects/project/a/tsconfig.json: + {} /users/username/projects/project/b/tsconfig.json: *new* {} diff --git a/tests/baselines/reference/tsserver/projects/synchronizeProjectList-provides-updates-to-redirect-info-when-requested.js b/tests/baselines/reference/tsserver/projects/synchronizeProjectList-provides-updates-to-redirect-info-when-requested.js index 2b143b20e1c96..d29775e502383 100644 --- a/tests/baselines/reference/tsserver/projects/synchronizeProjectList-provides-updates-to-redirect-info-when-requested.js +++ b/tests/baselines/reference/tsserver/projects/synchronizeProjectList-provides-updates-to-redirect-info-when-requested.js @@ -105,18 +105,18 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/users/username/projects/node_modules/@types: *new* + {"pollingInterval":500} /users/username/projects/project/a/node_modules/@types: *new* {"pollingInterval":500} /users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} -/users/username/projects/node_modules/@types: *new* - {"pollingInterval":500} FsWatches:: -/users/username/projects/project/a/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/project/a/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project/a: *new* @@ -203,24 +203,24 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/a/node_modules/@types: - {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/a/node_modules/@types: + {"pollingInterval":500} /users/username/projects/project/b/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/a/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/users/username/projects/project/b/tsconfig.json: *new* +/users/username/projects/project/a/tsconfig.json: {} /users/username/projects/project/b/b2.ts: *new* {} +/users/username/projects/project/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project/a: diff --git a/tests/baselines/reference/tsserver/projects/synchronizeProjectList-returns-correct-information-when-base-configuration-file-cannot-be-resolved-and-redirect-info-is-requested.js b/tests/baselines/reference/tsserver/projects/synchronizeProjectList-returns-correct-information-when-base-configuration-file-cannot-be-resolved-and-redirect-info-is-requested.js index 1c2fb63cf08fb..5b42afd6591d9 100644 --- a/tests/baselines/reference/tsserver/projects/synchronizeProjectList-returns-correct-information-when-base-configuration-file-cannot-be-resolved-and-redirect-info-is-requested.js +++ b/tests/baselines/reference/tsserver/projects/synchronizeProjectList-returns-correct-information-when-base-configuration-file-cannot-be-resolved-and-redirect-info-is-requested.js @@ -78,18 +78,18 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/tsconfig_base.json: *new* - {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/tsconfig_base.json: *new* + {"pollingInterval":2000} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject: *new* diff --git a/tests/baselines/reference/tsserver/projects/synchronizeProjectList-returns-correct-information-when-base-configuration-file-cannot-be-resolved.js b/tests/baselines/reference/tsserver/projects/synchronizeProjectList-returns-correct-information-when-base-configuration-file-cannot-be-resolved.js index bb901c4c79a10..0c1ad5a57c4a9 100644 --- a/tests/baselines/reference/tsserver/projects/synchronizeProjectList-returns-correct-information-when-base-configuration-file-cannot-be-resolved.js +++ b/tests/baselines/reference/tsserver/projects/synchronizeProjectList-returns-correct-information-when-base-configuration-file-cannot-be-resolved.js @@ -78,18 +78,18 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/tsconfig_base.json: *new* - {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/tsconfig_base.json: *new* + {"pollingInterval":2000} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject: *new* diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/sample-project.js b/tests/baselines/reference/tsserver/projectsWithReferences/sample-project.js index 0f9f632b9468e..a89eb560ae027 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/sample-project.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/sample-project.js @@ -216,27 +216,27 @@ function foo() {} PolledWatches:: -/user/username/projects/sample1/tests/node_modules/@types: *new* +/user/username/projects/node_modules/@types: *new* {"pollingInterval":500} /user/username/projects/sample1/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: *new* +/user/username/projects/sample1/tests/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/sample1/tests/tsconfig.json: *new* - {} -/user/username/projects/sample1/core/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: *new* +/user/username/projects/sample1/core/anothermodule.ts: *new* {} /user/username/projects/sample1/core/index.ts: *new* {} +/user/username/projects/sample1/core/tsconfig.json: *new* + {} /user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/core/anothermodule.ts: *new* +/user/username/projects/sample1/logic/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/sample1/tests/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-referenced-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-referenced-config-file.js index 388b047c67609..3537af40b9556 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-referenced-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-referenced-config-file.js @@ -169,30 +169,30 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/a/tsconfig.json: *new* +/user/username/projects/myproject/a/index.ts: *new* {} -/user/username/projects/myproject: *new* +/user/username/projects/myproject/a/tsconfig.json: *new* {} /user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/a/index.ts: *new* +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/refs/a.d.ts: *new* +/user/username/projects/myproject/c/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/refs/a.d.ts: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/a: *new* + {} /user/username/projects/myproject/b: *new* {} /user/username/projects/myproject/refs: *new* {} -/user/username/projects/myproject/a: *new* - {} Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/c/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json @@ -255,19 +255,19 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject: {} +/user/username/projects/myproject/a/index.ts: + {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/a/index.ts: +/user/username/projects/myproject/b/tsconfig.json: {} -/user/username/projects/myproject/refs/a.d.ts: +/user/username/projects/myproject/c/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/refs/a.d.ts: {} FsWatches *deleted*:: @@ -385,27 +385,27 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject: {} -/user/username/projects/myproject/b/index.ts: - {} /user/username/projects/myproject/a/index.ts: {} -/user/username/projects/myproject/refs/a.d.ts: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/a/tsconfig.json: *new* +/user/username/projects/myproject/b/tsconfig.json: + {} +/user/username/projects/myproject/c/tsconfig.json: + {} +/user/username/projects/myproject/refs/a.d.ts: {} FsWatchesRecursive:: +/user/username/projects/myproject/a: *new* + {} /user/username/projects/myproject/b: {} /user/username/projects/myproject/refs: {} -/user/username/projects/myproject/a: *new* - {} diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-transitively-referenced-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-transitively-referenced-config-file.js index 1ecc4f3a15503..b18983a8dea68 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-transitively-referenced-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-transitively-referenced-config-file.js @@ -169,30 +169,30 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/a/tsconfig.json: *new* +/user/username/projects/myproject/a/index.ts: *new* {} -/user/username/projects/myproject: *new* +/user/username/projects/myproject/a/tsconfig.json: *new* {} /user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/a/index.ts: *new* +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/refs/a.d.ts: *new* +/user/username/projects/myproject/c/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/refs/a.d.ts: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/a: *new* + {} /user/username/projects/myproject/b: *new* {} /user/username/projects/myproject/refs: *new* {} -/user/username/projects/myproject/a: *new* - {} Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/c/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-in-referenced-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-in-referenced-config-file.js index f875981586346..beaf028bbcc5a 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-in-referenced-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-in-referenced-config-file.js @@ -175,30 +175,30 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/a/tsconfig.json: *new* +/user/username/projects/myproject/a/index.ts: *new* {} -/user/username/projects/myproject: *new* +/user/username/projects/myproject/a/tsconfig.json: *new* {} /user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/a/index.ts: *new* +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/refs/a.d.ts: *new* +/user/username/projects/myproject/c/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/refs/a.d.ts: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/a: *new* + {} /user/username/projects/myproject/b: *new* {} /user/username/projects/myproject/refs: *new* {} -/user/username/projects/myproject/a: *new* - {} Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/c/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/c/tsconfig.json @@ -280,32 +280,32 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject: {} -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/index.ts: {} -/user/username/projects/myproject: +/user/username/projects/myproject/a/tsconfig.json: {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/a/index.ts: - {} -/user/username/projects/myproject/refs/a.d.ts: +/user/username/projects/myproject/b/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/c/tsconfig.json: {} /user/username/projects/myproject/nrefs/a.d.ts: *new* {} +/user/username/projects/myproject/refs/a.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/b: {} -/user/username/projects/myproject/refs: - {} /user/username/projects/myproject/nrefs: *new* {} +/user/username/projects/myproject/refs: + {} FsWatchesRecursive *deleted*:: /user/username/projects/myproject/a: @@ -400,32 +400,32 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject: {} -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/index.ts: {} -/user/username/projects/myproject: +/user/username/projects/myproject/a/tsconfig.json: {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/a/index.ts: - {} -/user/username/projects/myproject/refs/a.d.ts: +/user/username/projects/myproject/b/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/c/tsconfig.json: {} /user/username/projects/myproject/nrefs/a.d.ts: {} +/user/username/projects/myproject/refs/a.d.ts: + {} FsWatchesRecursive:: +/user/username/projects/myproject/a: *new* + {} /user/username/projects/myproject/b: {} /user/username/projects/myproject/refs: {} -/user/username/projects/myproject/a: *new* - {} FsWatchesRecursive *deleted*:: /user/username/projects/myproject/nrefs: diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-on-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-on-config-file.js index 0dcce825759e1..dfa5f40a559a3 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-on-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-on-config-file.js @@ -175,30 +175,30 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/a/tsconfig.json: *new* +/user/username/projects/myproject/a/index.ts: *new* {} -/user/username/projects/myproject: *new* +/user/username/projects/myproject/a/tsconfig.json: *new* {} /user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/a/index.ts: *new* +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/refs/a.d.ts: *new* +/user/username/projects/myproject/c/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/refs/a.d.ts: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/a: *new* + {} /user/username/projects/myproject/b: *new* {} /user/username/projects/myproject/refs: *new* {} -/user/username/projects/myproject/a: *new* - {} Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/c/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/c/tsconfig.json @@ -280,30 +280,30 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject: {} -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/index.ts: {} -/user/username/projects/myproject: +/user/username/projects/myproject/a/tsconfig.json: {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/a/index.ts: - {} -/user/username/projects/myproject/refs/a.d.ts: +/user/username/projects/myproject/b/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/c/tsconfig.json: {} /user/username/projects/myproject/nrefs/a.d.ts: *new* {} +/user/username/projects/myproject/refs/a.d.ts: + {} FsWatchesRecursive:: -/user/username/projects/myproject/b: - {} /user/username/projects/myproject/a: {} +/user/username/projects/myproject/b: + {} /user/username/projects/myproject/nrefs: *new* {} @@ -400,30 +400,30 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject: {} -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/index.ts: {} -/user/username/projects/myproject: +/user/username/projects/myproject/a/tsconfig.json: {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/a/index.ts: - {} -/user/username/projects/myproject/refs/a.d.ts: +/user/username/projects/myproject/b/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/c/tsconfig.json: {} /user/username/projects/myproject/nrefs/a.d.ts: {} +/user/username/projects/myproject/refs/a.d.ts: + {} FsWatchesRecursive:: -/user/username/projects/myproject/b: - {} /user/username/projects/myproject/a: {} +/user/username/projects/myproject/b: + {} /user/username/projects/myproject/refs: *new* {} diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-non-local-edit.js b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-non-local-edit.js index be77f3390ebe2..4852c8bdead5e 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-non-local-edit.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-non-local-edit.js @@ -168,30 +168,30 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/a/tsconfig.json: *new* +/user/username/projects/myproject/a/index.ts: *new* {} -/user/username/projects/myproject: *new* +/user/username/projects/myproject/a/tsconfig.json: *new* {} /user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/a/index.ts: *new* +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/refs/a.d.ts: *new* +/user/username/projects/myproject/c/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/refs/a.d.ts: *new* {} FsWatchesRecursive:: +/user/username/projects/myproject/a: *new* + {} /user/username/projects/myproject/b: *new* {} /user/username/projects/myproject/refs: *new* {} -/user/username/projects/myproject/a: *new* - {} Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/c/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-referenced-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-referenced-config-file.js index 2d2c8410dad21..708290c7344fd 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-referenced-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-referenced-config-file.js @@ -178,29 +178,29 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/a/tsconfig.json: *new* +/user/username/projects/myproject/a/index.ts: *new* {} -/user/username/projects/myproject: *new* +/user/username/projects/myproject/a/tsconfig.json: *new* {} /user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/a/index.ts: *new* +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/refs/a.d.ts: *new* +/user/username/projects/myproject/c/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/refs/a.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/c: *new* +/user/username/projects/myproject/a: *new* {} /user/username/projects/myproject/b: *new* {} -/user/username/projects/myproject/a: *new* +/user/username/projects/myproject/c: *new* {} /user/username/projects/myproject/refs: *new* {} @@ -270,19 +270,19 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject: {} +/user/username/projects/myproject/a/index.ts: + {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/a/index.ts: +/user/username/projects/myproject/b/tsconfig.json: {} -/user/username/projects/myproject/refs/a.d.ts: +/user/username/projects/myproject/c/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/refs/a.d.ts: {} FsWatches *deleted*:: @@ -290,10 +290,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/user/username/projects/myproject/c: - {} /user/username/projects/myproject/b: {} +/user/username/projects/myproject/c: + {} /user/username/projects/myproject/refs: {} @@ -406,29 +406,29 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: +/a/lib/lib.d.ts: {} /user/username/projects/myproject: {} -/user/username/projects/myproject/b/index.ts: - {} /user/username/projects/myproject/a/index.ts: {} -/user/username/projects/myproject/refs/a.d.ts: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/a/tsconfig.json: *new* +/user/username/projects/myproject/b/tsconfig.json: + {} +/user/username/projects/myproject/c/tsconfig.json: + {} +/user/username/projects/myproject/refs/a.d.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/c: +/user/username/projects/myproject/a: *new* {} /user/username/projects/myproject/b: {} -/user/username/projects/myproject/refs: +/user/username/projects/myproject/c: {} -/user/username/projects/myproject/a: *new* +/user/username/projects/myproject/refs: {} diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-transitively-referenced-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-transitively-referenced-config-file.js index 597e9576bc657..7c47afdd2c51a 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-transitively-referenced-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-transitively-referenced-config-file.js @@ -178,29 +178,29 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/a/tsconfig.json: *new* +/user/username/projects/myproject/a/index.ts: *new* {} -/user/username/projects/myproject: *new* +/user/username/projects/myproject/a/tsconfig.json: *new* {} /user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/a/index.ts: *new* +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/refs/a.d.ts: *new* +/user/username/projects/myproject/c/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/refs/a.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/c: *new* +/user/username/projects/myproject/a: *new* {} /user/username/projects/myproject/b: *new* {} -/user/username/projects/myproject/a: *new* +/user/username/projects/myproject/c: *new* {} /user/username/projects/myproject/refs: *new* {} diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-in-referenced-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-in-referenced-config-file.js index 9706cd2e1e7a4..d1483bec44d6b 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-in-referenced-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-in-referenced-config-file.js @@ -181,29 +181,29 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/a/tsconfig.json: *new* +/user/username/projects/myproject/a/index.ts: *new* {} -/user/username/projects/myproject: *new* +/user/username/projects/myproject/a/tsconfig.json: *new* {} /user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/a/index.ts: *new* +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/refs/a.d.ts: *new* +/user/username/projects/myproject/c/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/refs/a.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/c: *new* +/user/username/projects/myproject/a: *new* {} /user/username/projects/myproject/b: *new* {} -/user/username/projects/myproject/a: *new* +/user/username/projects/myproject/c: *new* {} /user/username/projects/myproject/refs: *new* {} @@ -288,36 +288,36 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject: {} -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/index.ts: {} -/user/username/projects/myproject: +/user/username/projects/myproject/a/tsconfig.json: {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/a/index.ts: - {} -/user/username/projects/myproject/refs/a.d.ts: +/user/username/projects/myproject/b/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/c/tsconfig.json: {} /user/username/projects/myproject/nrefs/a.d.ts: *new* {} +/user/username/projects/myproject/refs/a.d.ts: + {} FsWatchesRecursive:: -/user/username/projects/myproject/c: +/user/username/projects/myproject/a: {} /user/username/projects/myproject/b: {} -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/refs: +/user/username/projects/myproject/c: {} /user/username/projects/myproject/nrefs: *new* {} +/user/username/projects/myproject/refs: + {} Info seq [hh:mm:ss:mss] 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/c/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/c/tsconfig.json @@ -408,31 +408,31 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject: {} -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/index.ts: {} -/user/username/projects/myproject: +/user/username/projects/myproject/a/tsconfig.json: {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/a/index.ts: - {} -/user/username/projects/myproject/refs/a.d.ts: +/user/username/projects/myproject/b/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/c/tsconfig.json: {} /user/username/projects/myproject/nrefs/a.d.ts: {} +/user/username/projects/myproject/refs/a.d.ts: + {} FsWatchesRecursive:: -/user/username/projects/myproject/c: +/user/username/projects/myproject/a: {} /user/username/projects/myproject/b: {} -/user/username/projects/myproject/a: +/user/username/projects/myproject/c: {} /user/username/projects/myproject/refs: {} diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-on-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-on-config-file.js index 378b5eb47f545..e0f941425fd93 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-on-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-on-config-file.js @@ -181,29 +181,29 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/a/tsconfig.json: *new* +/user/username/projects/myproject/a/index.ts: *new* {} -/user/username/projects/myproject: *new* +/user/username/projects/myproject/a/tsconfig.json: *new* {} /user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/a/index.ts: *new* +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/refs/a.d.ts: *new* +/user/username/projects/myproject/c/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/refs/a.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/c: *new* +/user/username/projects/myproject/a: *new* {} /user/username/projects/myproject/b: *new* {} -/user/username/projects/myproject/a: *new* +/user/username/projects/myproject/c: *new* {} /user/username/projects/myproject/refs: *new* {} @@ -288,31 +288,31 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject: {} -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/index.ts: {} -/user/username/projects/myproject: +/user/username/projects/myproject/a/tsconfig.json: {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/a/index.ts: - {} -/user/username/projects/myproject/refs/a.d.ts: +/user/username/projects/myproject/b/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/c/tsconfig.json: {} /user/username/projects/myproject/nrefs/a.d.ts: *new* {} +/user/username/projects/myproject/refs/a.d.ts: + {} FsWatchesRecursive:: -/user/username/projects/myproject/c: +/user/username/projects/myproject/a: {} /user/username/projects/myproject/b: {} -/user/username/projects/myproject/a: +/user/username/projects/myproject/c: {} /user/username/projects/myproject/nrefs: *new* {} @@ -410,31 +410,31 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: +/a/lib/lib.d.ts: {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject: {} -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/index.ts: {} -/user/username/projects/myproject: +/user/username/projects/myproject/a/tsconfig.json: {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/a/index.ts: - {} -/user/username/projects/myproject/refs/a.d.ts: +/user/username/projects/myproject/b/tsconfig.json: {} -/a/lib/lib.d.ts: +/user/username/projects/myproject/c/tsconfig.json: {} /user/username/projects/myproject/nrefs/a.d.ts: {} +/user/username/projects/myproject/refs/a.d.ts: + {} FsWatchesRecursive:: -/user/username/projects/myproject/c: +/user/username/projects/myproject/a: {} /user/username/projects/myproject/b: {} -/user/username/projects/myproject/a: +/user/username/projects/myproject/c: {} /user/username/projects/myproject/refs: *new* {} diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-non-local-edit.js b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-non-local-edit.js index bfa60782bf8b1..27ad0726815a8 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-non-local-edit.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-non-local-edit.js @@ -174,29 +174,29 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/c/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/b/tsconfig.json: *new* +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/a/tsconfig.json: *new* +/user/username/projects/myproject/a/index.ts: *new* {} -/user/username/projects/myproject: *new* +/user/username/projects/myproject/a/tsconfig.json: *new* {} /user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/a/index.ts: *new* +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/refs/a.d.ts: *new* +/user/username/projects/myproject/c/tsconfig.json: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/refs/a.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/c: *new* +/user/username/projects/myproject/a: *new* {} /user/username/projects/myproject/b: *new* {} -/user/username/projects/myproject/a: *new* +/user/username/projects/myproject/c: *new* {} /user/username/projects/myproject/refs: *new* {} diff --git a/tests/baselines/reference/tsserver/refactors/handles-moving-statement-to-an-existing-file.js b/tests/baselines/reference/tsserver/refactors/handles-moving-statement-to-an-existing-file.js index 6be03ac67f229..d9291f7f16e3a 100644 --- a/tests/baselines/reference/tsserver/refactors/handles-moving-statement-to-an-existing-file.js +++ b/tests/baselines/reference/tsserver/refactors/handles-moving-statement-to-an-existing-file.js @@ -68,10 +68,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/foo/tsconfig.json: *new* - {} /foo/b.ts: *new* {} +/foo/tsconfig.json: *new* + {} Before request diff --git a/tests/baselines/reference/tsserver/reload/should-work-when-script-info-doesnt-have-any-project-open.js b/tests/baselines/reference/tsserver/reload/should-work-when-script-info-doesnt-have-any-project-open.js index 4cacffdf06bb0..e69e4a631995e 100644 --- a/tests/baselines/reference/tsserver/reload/should-work-when-script-info-doesnt-have-any-project-open.js +++ b/tests/baselines/reference/tsserver/reload/should-work-when-script-info-doesnt-have-any-project-open.js @@ -90,10 +90,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/lib/lib.d.ts: - {} /a/b/app.ts: *new* {} +/a/lib/lib.d.ts: + {} contents of closed file:: Content of /a/b/app.ts:: let x = 1 Inferred project: /dev/null/inferredProject1* isOrphan:: true isClosed: false @@ -241,10 +241,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/lib/lib.d.ts: - {} /a/b/app.ts: *new* {} +/a/lib/lib.d.ts: + {} contents of closed file:: Content of /a/b/app.ts:: let x = 1 Inferred project: /dev/null/inferredProject1* isOrphan:: true isClosed: false diff --git a/tests/baselines/reference/tsserver/reloadProjects/configured-project.js b/tests/baselines/reference/tsserver/reloadProjects/configured-project.js index d47bd89bbb249..e745c39713e03 100644 --- a/tests/baselines/reference/tsserver/reloadProjects/configured-project.js +++ b/tests/baselines/reference/tsserver/reloadProjects/configured-project.js @@ -134,10 +134,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject: *new* @@ -245,10 +245,10 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -344,10 +344,10 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -453,12 +453,12 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: diff --git a/tests/baselines/reference/tsserver/reloadProjects/external-project-with-config-file.js b/tests/baselines/reference/tsserver/reloadProjects/external-project-with-config-file.js index 3a3be206fdd04..fd99e788d3814 100644 --- a/tests/baselines/reference/tsserver/reloadProjects/external-project-with-config-file.js +++ b/tests/baselines/reference/tsserver/reloadProjects/external-project-with-config-file.js @@ -143,11 +143,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/file1.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -188,10 +188,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/file1.ts: @@ -303,10 +303,10 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -402,10 +402,10 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -511,12 +511,12 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} /user/username/projects/myproject: *new* {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: diff --git a/tests/baselines/reference/tsserver/reloadProjects/external-project.js b/tests/baselines/reference/tsserver/reloadProjects/external-project.js index dde9300cce8b9..e9bc2529a8d1a 100644 --- a/tests/baselines/reference/tsserver/reloadProjects/external-project.js +++ b/tests/baselines/reference/tsserver/reloadProjects/external-project.js @@ -117,10 +117,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/file1.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/file1.ts: *new* + {} Before request diff --git a/tests/baselines/reference/tsserver/reloadProjects/inferred-project.js b/tests/baselines/reference/tsserver/reloadProjects/inferred-project.js index c5ae2944b13c8..38ee842c9d29a 100644 --- a/tests/baselines/reference/tsserver/reloadProjects/inferred-project.js +++ b/tests/baselines/reference/tsserver/reloadProjects/inferred-project.js @@ -130,10 +130,10 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {"pollingInterval":2000} /user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} +/user/username/projects/myproject/tsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/node_modules: *new* {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* @@ -219,10 +219,10 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} /user/username/projects/myproject/jsconfig.json: {"pollingInterval":2000} +/user/username/projects/myproject/tsconfig.json: + {"pollingInterval":2000} /user/username/projects/node_modules/@types: {"pollingInterval":500} *new* @@ -305,10 +305,10 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} /user/username/projects/myproject/jsconfig.json: {"pollingInterval":2000} +/user/username/projects/myproject/tsconfig.json: + {"pollingInterval":2000} /user/username/projects/node_modules/@types: {"pollingInterval":500} *new* @@ -398,12 +398,12 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} /user/username/projects/myproject/file2: *new* {"pollingInterval":500} +/user/username/projects/myproject/jsconfig.json: + {"pollingInterval":2000} +/user/username/projects/myproject/tsconfig.json: + {"pollingInterval":2000} /user/username/projects/node_modules/@types: {"pollingInterval":500} *new* diff --git a/tests/baselines/reference/tsserver/resolutionCache/avoid-unnecessary-lookup-invalidation-on-save.js b/tests/baselines/reference/tsserver/resolutionCache/avoid-unnecessary-lookup-invalidation-on-save.js index a14605d8fa7c5..f812e83e6fa1f 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/avoid-unnecessary-lookup-invalidation-on-save.js +++ b/tests/baselines/reference/tsserver/resolutionCache/avoid-unnecessary-lookup-invalidation-on-save.js @@ -124,19 +124,19 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject: *new* {} -/user/username/projects/myproject/src/node_modules: *new* - {} /user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/src: *new* {} +/user/username/projects/myproject/src/node_modules: *new* + {} After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-different-folders.js b/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-different-folders.js index 63d91e672c58a..e5a51bb472d41 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-different-folders.js +++ b/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-different-folders.js @@ -209,7 +209,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/product/src/feature/file2.ts: *new* {} @@ -217,18 +217,18 @@ FsWatches:: {} /user/username/projects/myproject/product/test/src/file3.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject: *new* {} -/user/username/projects/myproject/product/node_modules: *new* - {} /user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/product: *new* {} +/user/username/projects/myproject/product/node_modules: *new* + {} Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json diff --git a/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-same-folder.js b/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-same-folder.js index 8311fe8c3a720..8edbcc8788168 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-same-folder.js +++ b/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-same-folder.js @@ -143,22 +143,22 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src/file2.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject: *new* {} -/user/username/projects/myproject/src/node_modules: *new* - {} /user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/src: *new* {} +/user/username/projects/myproject/src/node_modules: *new* + {} Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json diff --git a/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-inferred-project.js b/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-inferred-project.js index 4cdcde13144fc..31ebe3a10bc31 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-inferred-project.js +++ b/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-inferred-project.js @@ -217,48 +217,48 @@ import { module1 } from "module1";import { module2 } from "module2";import { mod PolledWatches:: -/user/username/projects/myproject/product/src/tsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/product/src/jsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/product/tsconfig.json: *new* +/user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} +/user/username/projects/myproject/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/myproject/product/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: *new* +/user/username/projects/myproject/product/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/myproject/product/src/jsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/myproject/product/src/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/product/test/node_modules: *new* - {"pollingInterval":500} -/user/username/projects/myproject/product/test/src/node_modules: *new* - {"pollingInterval":500} /user/username/projects/myproject/product/src/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/product/node_modules/@types: *new* +/user/username/projects/myproject/product/src/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/product/test/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: *new* +/user/username/projects/myproject/product/test/src/node_modules: *new* {"pollingInterval":500} +/user/username/projects/myproject/product/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/myproject/tsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: *new* + {} /user/username/projects/myproject/product/src/feature/file2.ts: *new* {} /user/username/projects/myproject/product/test/file4.ts: *new* {} /user/username/projects/myproject/product/test/src/file3.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} FsWatchesRecursive:: -/user/username/projects/myproject/product/node_modules: *new* - {} /user/username/projects/myproject/node_modules: *new* {} +/user/username/projects/myproject/product/node_modules: *new* + {} /user/username/projects/myproject/product/src/feature: *new* {} diff --git a/tests/baselines/reference/tsserver/resolutionCache/not-sharing-across-references.js b/tests/baselines/reference/tsserver/resolutionCache/not-sharing-across-references.js index f9f163b4d7b1b..e69fa1943df69 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/not-sharing-across-references.js +++ b/tests/baselines/reference/tsserver/resolutionCache/not-sharing-across-references.js @@ -156,22 +156,22 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: +/a/lib/lib.d.ts: *new* + {"pollingInterval":500} /users/username/projects/app/node_modules: *new* {"pollingInterval":500} /users/username/projects/common/node_modules: *new* {"pollingInterval":500} -/a/lib/lib.d.ts: *new* - {"pollingInterval":500} FsWatches:: -/users/username/projects/app/tsconfig.json: *new* - {} /users/username/projects/app/appa.ts: *new* {} -/users/username/projects/common/tsconfig.json: *new* +/users/username/projects/app/tsconfig.json: *new* {} /users/username/projects/common/moduleb.ts: *new* {} +/users/username/projects/common/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/app: *new* diff --git a/tests/baselines/reference/tsserver/resolutionCache/npm-install-@types-works.js b/tests/baselines/reference/tsserver/resolutionCache/npm-install-@types-works.js index 3520f48fad2b9..bce62766f02c0 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/npm-install-@types-works.js +++ b/tests/baselines/reference/tsserver/resolutionCache/npm-install-@types-works.js @@ -71,18 +71,18 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/b/projects/temp/tsconfig.json: *new* - {"pollingInterval":2000} +/a/b/projects/node_modules: *new* + {"pollingInterval":500} +/a/b/projects/node_modules/@types: *new* + {"pollingInterval":500} /a/b/projects/temp/jsconfig.json: *new* {"pollingInterval":2000} /a/b/projects/temp/node_modules: *new* {"pollingInterval":500} -/a/b/projects/node_modules: *new* - {"pollingInterval":500} /a/b/projects/temp/node_modules/@types: *new* {"pollingInterval":500} -/a/b/projects/node_modules/@types: *new* - {"pollingInterval":500} +/a/b/projects/temp/tsconfig.json: *new* + {"pollingInterval":2000} FsWatches:: /a/lib/lib.d.ts: *new* @@ -213,14 +213,14 @@ export = pad;declare function pad(length: number, text: string, char ?: string): PolledWatches:: -/a/b/projects/temp/tsconfig.json: - {"pollingInterval":2000} -/a/b/projects/temp/jsconfig.json: - {"pollingInterval":2000} /a/b/projects/node_modules: {"pollingInterval":500} /a/b/projects/node_modules/@types: {"pollingInterval":500} +/a/b/projects/temp/jsconfig.json: + {"pollingInterval":2000} +/a/b/projects/temp/tsconfig.json: + {"pollingInterval":2000} PolledWatches *deleted*:: /a/b/projects/temp/node_modules: @@ -266,12 +266,12 @@ After running Timeout callback:: count: 1 15: *ensureProjectForOpenFiles* PolledWatches:: -/a/b/projects/temp/tsconfig.json: - {"pollingInterval":2000} -/a/b/projects/temp/jsconfig.json: - {"pollingInterval":2000} /a/b/projects/node_modules/@types: {"pollingInterval":500} +/a/b/projects/temp/jsconfig.json: + {"pollingInterval":2000} +/a/b/projects/temp/tsconfig.json: + {"pollingInterval":2000} PolledWatches *deleted*:: /a/b/projects/node_modules: diff --git a/tests/baselines/reference/tsserver/resolutionCache/relative-module-name-from-files-in-different-folders.js b/tests/baselines/reference/tsserver/resolutionCache/relative-module-name-from-files-in-different-folders.js index 4899ddf5ab77d..ccdde47fa45b4 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/relative-module-name-from-files-in-different-folders.js +++ b/tests/baselines/reference/tsserver/resolutionCache/relative-module-name-from-files-in-different-folders.js @@ -193,19 +193,19 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/product/module2.ts: *new* {} -/user/username/projects/myproject/product/src/module1.ts: *new* - {} /user/username/projects/myproject/product/src/feature/file2.ts: *new* {} +/user/username/projects/myproject/product/src/module1.ts: *new* + {} /user/username/projects/myproject/product/test/file4.ts: *new* {} /user/username/projects/myproject/product/test/src/file3.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/resolutionCache/relative-module-name-from-files-in-same-folder.js b/tests/baselines/reference/tsserver/resolutionCache/relative-module-name-from-files-in-same-folder.js index f915ef56cc6e7..61ecf7ced2dcc 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/relative-module-name-from-files-in-same-folder.js +++ b/tests/baselines/reference/tsserver/resolutionCache/relative-module-name-from-files-in-same-folder.js @@ -127,7 +127,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/module2.ts: *new* {} @@ -135,7 +135,7 @@ FsWatches:: {} /user/username/projects/myproject/src/module1.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-configured-projects.js b/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-configured-projects.js index 26d8d9f797fa3..ed98cbbf92e2f 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-configured-projects.js +++ b/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-configured-projects.js @@ -72,16 +72,16 @@ After request PolledWatches:: /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: *new* - {} /users/username/projects/project/modulefile.ts: *new* {} +/users/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/project: *new* @@ -129,10 +129,10 @@ export function bar() { }; PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: /users/username/projects/project/tsconfig.json: @@ -188,19 +188,19 @@ After running Timeout callback:: count: 0 PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} /users/username/projects/project/modulefile: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project: *new* {} /users/username/projects/project/modulefile1.ts: *new* {} -/users/username/projects/project: *new* +/users/username/projects/project/tsconfig.json: {} FsWatchesRecursive:: @@ -270,18 +270,18 @@ export function bar() { }; PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} /users/username/projects/project/modulefile: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project: {} +/users/username/projects/project/tsconfig.json: + {} FsWatches *deleted*:: /users/username/projects/project/modulefile1.ts: @@ -339,20 +339,20 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} PolledWatches *deleted*:: /users/username/projects/project/modulefile: {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: - {} /users/username/projects/project/modulefile.ts: *new* {} +/users/username/projects/project/tsconfig.json: + {} FsWatches *deleted*:: /users/username/projects/project: diff --git a/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-inferred-projects.js b/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-inferred-projects.js index 1d783daac367b..2e7a2fb800e2c 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-inferred-projects.js +++ b/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-inferred-projects.js @@ -55,16 +55,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/tsconfig.json: *new* - {"pollingInterval":2000} -/users/username/projects/project/jsconfig.json: *new* - {"pollingInterval":2000} /a/lib/lib.d.ts: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/project/jsconfig.json: *new* + {"pollingInterval":2000} +/users/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} +/users/username/projects/project/tsconfig.json: *new* + {"pollingInterval":2000} FsWatches:: /users/username/projects/project/modulefile.ts: *new* @@ -102,16 +102,16 @@ export function bar() { }; //// [/users/username/projects/project/moduleFile.ts] deleted PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":2000} -/users/username/projects/project/jsconfig.json: - {"pollingInterval":2000} /a/lib/lib.d.ts: {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/jsconfig.json: + {"pollingInterval":2000} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} +/users/username/projects/project/tsconfig.json: + {"pollingInterval":2000} FsWatches *deleted*:: /users/username/projects/project/modulefile.ts: @@ -153,18 +153,18 @@ Info seq [hh:mm:ss:mss] Projects: /dev/null/inferredProject1* After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":2000} -/users/username/projects/project/jsconfig.json: - {"pollingInterval":2000} /a/lib/lib.d.ts: {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/jsconfig.json: + {"pollingInterval":2000} /users/username/projects/project/modulefile: *new* {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} +/users/username/projects/project/tsconfig.json: + {"pollingInterval":2000} FsWatches:: /users/username/projects/project: *new* @@ -288,16 +288,16 @@ Info seq [hh:mm:ss:mss] Projects: /dev/null/inferredProject1* After running Timeout callback:: count: 0 PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":2000} -/users/username/projects/project/jsconfig.json: - {"pollingInterval":2000} /a/lib/lib.d.ts: {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/jsconfig.json: + {"pollingInterval":2000} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} +/users/username/projects/project/tsconfig.json: + {"pollingInterval":2000} PolledWatches *deleted*:: /users/username/projects/project/modulefile: diff --git a/tests/baselines/reference/tsserver/resolutionCache/sharing-across-references.js b/tests/baselines/reference/tsserver/resolutionCache/sharing-across-references.js index 8a1b2f1f41ee4..ee0a99fd96c3e 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/sharing-across-references.js +++ b/tests/baselines/reference/tsserver/resolutionCache/sharing-across-references.js @@ -152,26 +152,26 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/app/node_modules: *new* - {"pollingInterval":500} -/users/username/projects/common/node_modules: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} +/users/username/projects/app/node_modules: *new* + {"pollingInterval":500} /users/username/projects/app/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/common/node_modules: *new* + {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/app/tsconfig.json: *new* - {} /users/username/projects/app/appa.ts: *new* {} -/users/username/projects/common/tsconfig.json: *new* +/users/username/projects/app/tsconfig.json: *new* {} /users/username/projects/common/moduleb.ts: *new* {} +/users/username/projects/common/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/app: *new* diff --git a/tests/baselines/reference/tsserver/resolutionCache/should-remove-the-module-not-found-error.js b/tests/baselines/reference/tsserver/resolutionCache/should-remove-the-module-not-found-error.js index dc2f32021db70..1543e65d714e0 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/should-remove-the-module-not-found-error.js +++ b/tests/baselines/reference/tsserver/resolutionCache/should-remove-the-module-not-found-error.js @@ -52,18 +52,18 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/tsconfig.json: *new* - {"pollingInterval":2000} +/a/lib/lib.d.ts: *new* + {"pollingInterval":500} +/users/username/projects/node_modules/@types: *new* + {"pollingInterval":500} /users/username/projects/project/jsconfig.json: *new* {"pollingInterval":2000} /users/username/projects/project/modulefile: *new* {"pollingInterval":500} -/a/lib/lib.d.ts: *new* - {"pollingInterval":500} /users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} -/users/username/projects/node_modules/@types: *new* - {"pollingInterval":500} +/users/username/projects/project/tsconfig.json: *new* + {"pollingInterval":2000} FsWatches:: /users/username/projects/project: *new* @@ -177,16 +177,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":2000} -/users/username/projects/project/jsconfig.json: - {"pollingInterval":2000} /a/lib/lib.d.ts: {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} +/users/username/projects/project/jsconfig.json: + {"pollingInterval":2000} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} +/users/username/projects/project/tsconfig.json: + {"pollingInterval":2000} PolledWatches *deleted*:: /users/username/projects/project/modulefile: diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-fails.js b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-fails.js index 7aacd630da007..c7c1bf6f1cfb8 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-fails.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-fails.js @@ -133,33 +133,33 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/somefolder: *new* - {"pollingInterval":500} -/user/username/projects/somefolder: *new* +/user/username/projects/myproject/node_modules: *new* {"pollingInterval":500} -/user/username/somefolder: *new* +/user/username/projects/myproject/somefolder: *new* {"pollingInterval":500} /user/username/projects/myproject/src/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules: *new* - {"pollingInterval":500} /user/username/projects/node_modules: *new* {"pollingInterval":500} +/user/username/projects/somefolder: *new* + {"pollingInterval":500} +/user/username/somefolder: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/src/somefolder/module1.ts: *new* +/user/username/projects: *new* {} -/user/username/projects/myproject/src/typings/electron.d.ts: *new* +/user/username/projects/myproject: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject: *new* +/user/username/projects/myproject/src/somefolder/module1.ts: *new* {} -/user/username/projects: *new* +/user/username/projects/myproject/src/tsconfig.json: *new* {} -/user/username/projects/myproject/src: *new* +/user/username/projects/myproject/src/typings/electron.d.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-resolves-to-ambient-module.js b/tests/baselines/reference/tsserver/resolutionCache/when-resolves-to-ambient-module.js index a918261e972f5..fcd948c705f99 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-resolves-to-ambient-module.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-resolves-to-ambient-module.js @@ -139,30 +139,30 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/somefolder: *new* - {"pollingInterval":500} -/user/username/projects/somefolder: *new* +/user/username/projects/myproject/node_modules: *new* {"pollingInterval":500} -/user/username/somefolder: *new* +/user/username/projects/myproject/somefolder: *new* {"pollingInterval":500} /user/username/projects/myproject/src/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules: *new* - {"pollingInterval":500} /user/username/projects/node_modules: *new* {"pollingInterval":500} +/user/username/projects/somefolder: *new* + {"pollingInterval":500} +/user/username/somefolder: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/src/somefolder/module1.ts: *new* {} +/user/username/projects/myproject/src/tsconfig.json: *new* + {} /user/username/projects/myproject/src/typings/electron.d.ts: *new* {} /user/username/projects/myproject/src/typings/node.d.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} FsWatchesRecursive:: /user/username/projects/myproject/src: *new* diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-watching-node_modules-as-part-of-wild-card-directories-in-config-project.js b/tests/baselines/reference/tsserver/resolutionCache/when-watching-node_modules-as-part-of-wild-card-directories-in-config-project.js index 172070f954f4e..a2a8ca5bd617e 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-watching-node_modules-as-part-of-wild-card-directories-in-config-project.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-watching-node_modules-as-part-of-wild-card-directories-in-config-project.js @@ -81,10 +81,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject: *new* diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-watching-node_modules-in-inferred-project-for-failed-lookup/closed-script-infos.js b/tests/baselines/reference/tsserver/resolutionCache/when-watching-node_modules-in-inferred-project-for-failed-lookup/closed-script-infos.js index e4e1409e10be1..78dd6e8408948 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-watching-node_modules-in-inferred-project-for-failed-lookup/closed-script-infos.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-watching-node_modules-in-inferred-project-for-failed-lookup/closed-script-infos.js @@ -62,12 +62,12 @@ Timeout callback:: count: 0 Immedidate callback:: count: 0 PolledWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {"pollingInterval":2000} /user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/tsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} diff --git a/tests/baselines/reference/tsserver/resolutionCache/works-correctly-when-typings-are-added-or-removed.js b/tests/baselines/reference/tsserver/resolutionCache/works-correctly-when-typings-are-added-or-removed.js index cac5d818b4532..bc9b8af81ac69 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/works-correctly-when-typings-are-added-or-removed.js +++ b/tests/baselines/reference/tsserver/resolutionCache/works-correctly-when-typings-are-added-or-removed.js @@ -133,10 +133,10 @@ After running Timeout callback:: count: 0 PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} /users/username/projects/node_modules: *new* {"pollingInterval":500} +/users/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: /users/username/projects/project/tsconfig.json: diff --git a/tests/baselines/reference/tsserver/skipLibCheck/jsonly-inferred-project.js b/tests/baselines/reference/tsserver/skipLibCheck/jsonly-inferred-project.js index 1118ba0050054..7ad6426112663 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/jsonly-inferred-project.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/jsonly-inferred-project.js @@ -104,12 +104,12 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/bower_components: *new* {"pollingInterval":500} /a/b/node_modules: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} FsWatches:: /a/b/file2.d.ts: @@ -145,12 +145,12 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/bower_components: {"pollingInterval":500} /a/b/node_modules: {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} FsWatches *deleted*:: /a/b/file2.d.ts: @@ -224,12 +224,12 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/bower_components: {"pollingInterval":500} /a/b/node_modules: {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} FsWatches:: /a/b/file1.js: *new* @@ -379,12 +379,12 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/bower_components: {"pollingInterval":500} /a/b/node_modules: {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} FsWatches *deleted*:: /a/b/file1.js: diff --git a/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-js-project-with-tscheck.js b/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-js-project-with-tscheck.js index 6ea7d4c01e39e..e4614af2caa2e 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-js-project-with-tscheck.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-js-project-with-tscheck.js @@ -108,10 +108,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/jsconfig.json: - {} /a/data/package.json: *new* {} +/a/jsconfig.json: + {} FsWatchesRecursive:: /a: @@ -152,18 +152,18 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/bower_components: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} /a/node_modules: *new* {"pollingInterval":500} FsWatches:: -/a/jsconfig.json: - {} /a/data/package.json: {} +/a/jsconfig.json: + {} FsWatchesRecursive:: /a: diff --git a/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-project-with-tscheck.js b/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-project-with-tscheck.js index 1f0b5c3f3393f..eeb432622544b 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-project-with-tscheck.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-project-with-tscheck.js @@ -109,10 +109,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/jsconfig.json: - {} /a/data/package.json: *new* {} +/a/jsconfig.json: + {} FsWatchesRecursive:: /a: @@ -153,18 +153,18 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/bower_components: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} /a/node_modules: *new* {"pollingInterval":500} FsWatches:: -/a/jsconfig.json: - {} /a/data/package.json: {} +/a/jsconfig.json: + {} FsWatchesRecursive:: /a: diff --git a/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-with-tscheck.js b/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-with-tscheck.js index bee5d4479c99d..3179e7bb579c8 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-with-tscheck.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-with-tscheck.js @@ -88,10 +88,10 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/bower_components: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} /a/node_modules: *new* {"pollingInterval":500} diff --git a/tests/baselines/reference/tsserver/skipLibCheck/should-not-report-bind-errors-for-declaration-files-with-skipLibCheck=true.js b/tests/baselines/reference/tsserver/skipLibCheck/should-not-report-bind-errors-for-declaration-files-with-skipLibCheck=true.js index ad345860b2b38..29a08197fee99 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/should-not-report-bind-errors-for-declaration-files-with-skipLibCheck=true.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/should-not-report-bind-errors-for-declaration-files-with-skipLibCheck=true.js @@ -73,12 +73,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/jsconfig.json: *new* - {} /a/dtsfile1.d.ts: *new* {} /a/dtsfile2.d.ts: *new* {} +/a/jsconfig.json: *new* + {} FsWatchesRecursive:: /a: *new* @@ -128,13 +128,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/jsconfig.json: +/a/data/package.json: *new* {} /a/dtsfile1.d.ts: {} /a/dtsfile2.d.ts: {} -/a/data/package.json: *new* +/a/jsconfig.json: {} FsWatchesRecursive:: @@ -176,21 +176,21 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/bower_components: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} /a/node_modules: *new* {"pollingInterval":500} FsWatches:: -/a/jsconfig.json: +/a/data/package.json: {} /a/dtsfile1.d.ts: {} /a/dtsfile2.d.ts: {} -/a/data/package.json: +/a/jsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-compiles-from-sources.js b/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-compiles-from-sources.js index 6356a663dfc4e..22c0949d2f587 100644 --- a/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-compiles-from-sources.js +++ b/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-compiles-from-sources.js @@ -174,32 +174,32 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: *new* +/users/username/projects/myproject/javascript/node_modules: *new* {"pollingInterval":500} -/users/username/projects/myproject/javascript/packages/node_modules: *new* +/users/username/projects/myproject/javascript/node_modules/@types: *new* {"pollingInterval":500} -/users/username/projects/myproject/javascript/node_modules: *new* +/users/username/projects/myproject/javascript/packages/node_modules: *new* {"pollingInterval":500} -/users/username/projects/myproject/node_modules: *new* +/users/username/projects/myproject/javascript/packages/node_modules/@types: *new* {"pollingInterval":500} -/users/username/projects/node_modules: *new* +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: *new* {"pollingInterval":500} /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: *new* {"pollingInterval":500} -/users/username/projects/myproject/javascript/packages/node_modules/@types: *new* - {"pollingInterval":500} -/users/username/projects/myproject/javascript/node_modules/@types: *new* +/users/username/projects/myproject/node_modules: *new* {"pollingInterval":500} /users/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/node_modules: *new* + {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: *new* @@ -314,22 +314,22 @@ export class C { method(): number; } PolledWatches:: -/users/username/projects/myproject/javascript/packages/node_modules: - {"pollingInterval":500} /users/username/projects/myproject/javascript/node_modules: {"pollingInterval":500} -/users/username/projects/myproject/node_modules: - {"pollingInterval":500} -/users/username/projects/node_modules: +/users/username/projects/myproject/javascript/node_modules/@types: {"pollingInterval":500} -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: +/users/username/projects/myproject/javascript/packages/node_modules: {"pollingInterval":500} /users/username/projects/myproject/javascript/packages/node_modules/@types: {"pollingInterval":500} -/users/username/projects/myproject/javascript/node_modules/@types: +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: + {"pollingInterval":500} +/users/username/projects/myproject/node_modules: {"pollingInterval":500} /users/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +/users/username/projects/node_modules: + {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} @@ -338,16 +338,16 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: + {} FsWatchesRecursive:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/src: - {} /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: *new* {} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/src: + {} Info seq [hh:mm:ss:mss] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json @@ -421,11 +421,11 @@ After running Timeout callback:: count: 1 8: checkOne PolledWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: +/users/username/projects/myproject/javascript/node_modules/@types: {"pollingInterval":500} /users/username/projects/myproject/javascript/packages/node_modules/@types: {"pollingInterval":500} -/users/username/projects/myproject/javascript/node_modules/@types: +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: {"pollingInterval":500} /users/username/projects/myproject/node_modules/@types: {"pollingInterval":500} @@ -433,30 +433,30 @@ PolledWatches:: {"pollingInterval":500} PolledWatches *deleted*:: -/users/username/projects/myproject/javascript/packages/node_modules: - {"pollingInterval":500} /users/username/projects/myproject/javascript/node_modules: {"pollingInterval":500} +/users/username/projects/myproject/javascript/packages/node_modules: + {"pollingInterval":500} /users/username/projects/myproject/node_modules: {"pollingInterval":500} /users/username/projects/node_modules: {"pollingInterval":500} FsWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: + {} /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts: *new* {} /users/username/projects/myproject/javascript/packages/recognizers-text/package.json: *new* {} FsWatchesRecursive:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/src: - {} /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/src: + {} Before request diff --git a/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js b/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js index 5dd473d2978c0..a14ef233e6898 100644 --- a/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js +++ b/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js @@ -176,38 +176,38 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/myproject/javascript/packages/node_modules: *new* - {"pollingInterval":500} /users/username/projects/myproject/javascript/node_modules: *new* {"pollingInterval":500} -/users/username/projects/myproject/node_modules: *new* - {"pollingInterval":500} -/users/username/projects/node_modules: *new* +/users/username/projects/myproject/javascript/node_modules/@types: *new* {"pollingInterval":500} -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: *new* +/users/username/projects/myproject/javascript/packages/node_modules: *new* {"pollingInterval":500} /users/username/projects/myproject/javascript/packages/node_modules/@types: *new* {"pollingInterval":500} -/users/username/projects/myproject/javascript/node_modules/@types: *new* +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: *new* + {"pollingInterval":500} +/users/username/projects/myproject/node_modules: *new* {"pollingInterval":500} /users/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/node_modules: *new* + {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: *new* + {} /users/username/projects/myproject/javascript/packages/recognizers-text/package.json: *new* {} FsWatchesRecursive:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/src: *new* - {} /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: *new* {} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/src: *new* + {} Before request diff --git a/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-recompiles-after-deleting-generated-folders.js b/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-recompiles-after-deleting-generated-folders.js index 4601e56186241..c34dd61e7f1ac 100644 --- a/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-recompiles-after-deleting-generated-folders.js +++ b/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-recompiles-after-deleting-generated-folders.js @@ -175,11 +175,11 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: *new* +/users/username/projects/myproject/javascript/node_modules/@types: *new* {"pollingInterval":500} /users/username/projects/myproject/javascript/packages/node_modules/@types: *new* {"pollingInterval":500} -/users/username/projects/myproject/javascript/node_modules/@types: *new* +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: *new* {"pollingInterval":500} /users/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} @@ -187,20 +187,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: *new* + {} /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: *new* {} /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} /users/username/projects/myproject/javascript/packages/recognizers-text/package.json: *new* {} FsWatchesRecursive:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/src: *new* - {} /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: *new* {} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/src: *new* + {} Before request @@ -288,11 +288,11 @@ Before running Timeout callback:: count: 2 //// [/users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts] deleted PolledWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: +/users/username/projects/myproject/javascript/node_modules/@types: {"pollingInterval":500} /users/username/projects/myproject/javascript/packages/node_modules/@types: {"pollingInterval":500} -/users/username/projects/myproject/javascript/node_modules/@types: +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: {"pollingInterval":500} /users/username/projects/myproject/node_modules/@types: {"pollingInterval":500} @@ -300,10 +300,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: + {} /users/username/projects/myproject/javascript/packages/recognizers-text/package.json: {} @@ -312,10 +312,10 @@ FsWatches *deleted*:: {} FsWatchesRecursive:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/src: - {} /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/src: + {} Info seq [hh:mm:ss:mss] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json @@ -373,38 +373,38 @@ After running Timeout callback:: count: 1 4: checkOne PolledWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: - {"pollingInterval":500} -/users/username/projects/myproject/javascript/packages/node_modules/@types: +/users/username/projects/myproject/javascript/node_modules: *new* {"pollingInterval":500} /users/username/projects/myproject/javascript/node_modules/@types: {"pollingInterval":500} -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} /users/username/projects/myproject/javascript/packages/node_modules: *new* {"pollingInterval":500} -/users/username/projects/myproject/javascript/node_modules: *new* +/users/username/projects/myproject/javascript/packages/node_modules/@types: + {"pollingInterval":500} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: {"pollingInterval":500} /users/username/projects/myproject/node_modules: *new* {"pollingInterval":500} +/users/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} /users/username/projects/node_modules: *new* {"pollingInterval":500} +/users/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: + {} /users/username/projects/myproject/javascript/packages/recognizers-text/package.json: {} FsWatchesRecursive:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/src: - {} /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/src: + {} Before running Timeout callback:: count: 1 4: checkOne diff --git a/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-compiles-from-sources.js b/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-compiles-from-sources.js index e65ce993288f1..dda12cfa89d45 100644 --- a/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-compiles-from-sources.js +++ b/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-compiles-from-sources.js @@ -191,34 +191,34 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: *new* +/users/username/projects/myproject/javascript/node_modules: *new* {"pollingInterval":500} -/users/username/projects/myproject/javascript/packages/node_modules: *new* +/users/username/projects/myproject/javascript/node_modules/@types: *new* {"pollingInterval":500} -/users/username/projects/myproject/javascript/node_modules: *new* +/users/username/projects/myproject/javascript/packages/node_modules: *new* {"pollingInterval":500} -/users/username/projects/myproject/node_modules: *new* +/users/username/projects/myproject/javascript/packages/node_modules/@types: *new* {"pollingInterval":500} -/users/username/projects/node_modules: *new* +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: *new* {"pollingInterval":500} /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: *new* {"pollingInterval":500} -/users/username/projects/myproject/javascript/packages/node_modules/@types: *new* - {"pollingInterval":500} -/users/username/projects/myproject/javascript/node_modules/@types: *new* +/users/username/projects/myproject/node_modules: *new* {"pollingInterval":500} /users/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/node_modules: *new* + {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} /users/username/projects/myproject/javascript/packages: *new* {} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: *new* + {} /users/username/projects/myproject/javascript/packages/recognizers-text/package.json: *new* {} @@ -346,22 +346,22 @@ export class C { method(): number; } PolledWatches:: -/users/username/projects/myproject/javascript/packages/node_modules: - {"pollingInterval":500} /users/username/projects/myproject/javascript/node_modules: {"pollingInterval":500} -/users/username/projects/myproject/node_modules: - {"pollingInterval":500} -/users/username/projects/node_modules: +/users/username/projects/myproject/javascript/node_modules/@types: {"pollingInterval":500} -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: +/users/username/projects/myproject/javascript/packages/node_modules: {"pollingInterval":500} /users/username/projects/myproject/javascript/packages/node_modules/@types: {"pollingInterval":500} -/users/username/projects/myproject/javascript/node_modules/@types: +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: + {"pollingInterval":500} +/users/username/projects/myproject/node_modules: {"pollingInterval":500} /users/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +/users/username/projects/node_modules: + {"pollingInterval":500} /users/username/projects/node_modules/@types: {"pollingInterval":500} @@ -370,22 +370,22 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/myproject/javascript/packages: {} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: + {} /users/username/projects/myproject/javascript/packages/recognizers-text/package.json: {} FsWatchesRecursive:: +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: *new* + {} /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} /users/username/projects/myproject/javascript/packages/recognizers-text: {} -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: *new* - {} Info seq [hh:mm:ss:mss] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json @@ -464,11 +464,11 @@ After running Timeout callback:: count: 1 11: checkOne PolledWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: +/users/username/projects/myproject/javascript/node_modules/@types: {"pollingInterval":500} /users/username/projects/myproject/javascript/packages/node_modules/@types: {"pollingInterval":500} -/users/username/projects/myproject/javascript/node_modules/@types: +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: {"pollingInterval":500} /users/username/projects/myproject/node_modules/@types: {"pollingInterval":500} @@ -476,36 +476,36 @@ PolledWatches:: {"pollingInterval":500} PolledWatches *deleted*:: -/users/username/projects/myproject/javascript/packages/node_modules: - {"pollingInterval":500} /users/username/projects/myproject/javascript/node_modules: {"pollingInterval":500} +/users/username/projects/myproject/javascript/packages/node_modules: + {"pollingInterval":500} /users/username/projects/myproject/node_modules: {"pollingInterval":500} /users/username/projects/node_modules: {"pollingInterval":500} FsWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/myproject/javascript/packages: {} -/users/username/projects/myproject/javascript/packages/recognizers-text/package.json: +/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: {} /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts: *new* {} +/users/username/projects/myproject/javascript/packages/recognizers-text/package.json: + {} FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} FsWatchesRecursive *deleted*:: -/users/username/projects/myproject/javascript/packages/recognizers-text: - {} /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} +/users/username/projects/myproject/javascript/packages/recognizers-text: + {} Before request diff --git a/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js b/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js index 66e3ff4763c8b..d083911de0403 100644 --- a/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js +++ b/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js @@ -192,42 +192,42 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/myproject/javascript/packages/node_modules: *new* - {"pollingInterval":500} /users/username/projects/myproject/javascript/node_modules: *new* {"pollingInterval":500} -/users/username/projects/myproject/node_modules: *new* - {"pollingInterval":500} -/users/username/projects/node_modules: *new* +/users/username/projects/myproject/javascript/node_modules/@types: *new* {"pollingInterval":500} -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: *new* +/users/username/projects/myproject/javascript/packages/node_modules: *new* {"pollingInterval":500} /users/username/projects/myproject/javascript/packages/node_modules/@types: *new* {"pollingInterval":500} -/users/username/projects/myproject/javascript/node_modules/@types: *new* +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: *new* + {"pollingInterval":500} +/users/username/projects/myproject/node_modules: *new* {"pollingInterval":500} /users/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/node_modules: *new* + {"pollingInterval":500} /users/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} /users/username/projects/myproject/javascript/packages: *new* {} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: *new* + {} /users/username/projects/myproject/javascript/packages/recognizers-text/package.json: *new* {} FsWatchesRecursive:: +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: *new* + {} /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: *new* {} /users/username/projects/myproject/javascript/packages/recognizers-text: *new* {} -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: *new* - {} Before request @@ -410,11 +410,11 @@ After running Timeout callback:: count: 1 7: checkOne PolledWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: +/users/username/projects/myproject/javascript/node_modules/@types: {"pollingInterval":500} /users/username/projects/myproject/javascript/packages/node_modules/@types: {"pollingInterval":500} -/users/username/projects/myproject/javascript/node_modules/@types: +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: {"pollingInterval":500} /users/username/projects/myproject/node_modules/@types: {"pollingInterval":500} @@ -422,36 +422,36 @@ PolledWatches:: {"pollingInterval":500} PolledWatches *deleted*:: -/users/username/projects/myproject/javascript/packages/node_modules: - {"pollingInterval":500} /users/username/projects/myproject/javascript/node_modules: {"pollingInterval":500} +/users/username/projects/myproject/javascript/packages/node_modules: + {"pollingInterval":500} /users/username/projects/myproject/node_modules: {"pollingInterval":500} /users/username/projects/node_modules: {"pollingInterval":500} FsWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/myproject/javascript/packages: {} -/users/username/projects/myproject/javascript/packages/recognizers-text/package.json: +/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: {} /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts: *new* {} +/users/username/projects/myproject/javascript/packages/recognizers-text/package.json: + {} FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} FsWatchesRecursive *deleted*:: -/users/username/projects/myproject/javascript/packages/recognizers-text: - {} /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} +/users/username/projects/myproject/javascript/packages/recognizers-text: + {} Before request diff --git a/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-recompiles-after-deleting-generated-folders.js b/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-recompiles-after-deleting-generated-folders.js index a5a0e63bcf530..9bc5a00a225a4 100644 --- a/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-recompiles-after-deleting-generated-folders.js +++ b/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-recompiles-after-deleting-generated-folders.js @@ -185,11 +185,11 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: *new* +/users/username/projects/myproject/javascript/node_modules/@types: *new* {"pollingInterval":500} /users/username/projects/myproject/javascript/packages/node_modules/@types: *new* {"pollingInterval":500} -/users/username/projects/myproject/javascript/node_modules/@types: *new* +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: *new* {"pollingInterval":500} /users/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} @@ -197,14 +197,14 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: *new* - {} -/users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts: *new* - {} /a/lib/lib.d.ts: *new* {} /users/username/projects/myproject/javascript/packages: *new* {} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: *new* + {} +/users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts: *new* + {} /users/username/projects/myproject/javascript/packages/recognizers-text/package.json: *new* {} @@ -298,11 +298,11 @@ Before running Timeout callback:: count: 2 //// [/users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts] deleted PolledWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: +/users/username/projects/myproject/javascript/node_modules/@types: {"pollingInterval":500} /users/username/projects/myproject/javascript/packages/node_modules/@types: {"pollingInterval":500} -/users/username/projects/myproject/javascript/node_modules/@types: +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: {"pollingInterval":500} /users/username/projects/myproject/node_modules/@types: {"pollingInterval":500} @@ -310,12 +310,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/myproject/javascript/packages: {} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: + {} /users/username/projects/myproject/javascript/packages/recognizers-text/package.json: {} @@ -389,42 +389,42 @@ After running Timeout callback:: count: 1 4: checkOne PolledWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: - {"pollingInterval":500} -/users/username/projects/myproject/javascript/packages/node_modules/@types: +/users/username/projects/myproject/javascript/node_modules: *new* {"pollingInterval":500} /users/username/projects/myproject/javascript/node_modules/@types: {"pollingInterval":500} -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} /users/username/projects/myproject/javascript/packages/node_modules: *new* {"pollingInterval":500} -/users/username/projects/myproject/javascript/node_modules: *new* +/users/username/projects/myproject/javascript/packages/node_modules/@types: + {"pollingInterval":500} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: {"pollingInterval":500} /users/username/projects/myproject/node_modules: *new* {"pollingInterval":500} +/users/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} /users/username/projects/node_modules: *new* {"pollingInterval":500} +/users/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/myproject/javascript/packages: {} +/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: + {} /users/username/projects/myproject/javascript/packages/recognizers-text/package.json: {} FsWatchesRecursive:: +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: *new* + {} /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} /users/username/projects/myproject/javascript/packages/recognizers-text: *new* {} -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: *new* - {} Before running Timeout callback:: count: 1 4: checkOne @@ -622,11 +622,11 @@ After running Timeout callback:: count: 1 11: checkOne PolledWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: +/users/username/projects/myproject/javascript/node_modules/@types: {"pollingInterval":500} /users/username/projects/myproject/javascript/packages/node_modules/@types: {"pollingInterval":500} -/users/username/projects/myproject/javascript/node_modules/@types: +/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types: {"pollingInterval":500} /users/username/projects/myproject/node_modules/@types: {"pollingInterval":500} @@ -634,36 +634,36 @@ PolledWatches:: {"pollingInterval":500} PolledWatches *deleted*:: -/users/username/projects/myproject/javascript/packages/node_modules: - {"pollingInterval":500} /users/username/projects/myproject/javascript/node_modules: {"pollingInterval":500} +/users/username/projects/myproject/javascript/packages/node_modules: + {"pollingInterval":500} /users/username/projects/myproject/node_modules: {"pollingInterval":500} /users/username/projects/node_modules: {"pollingInterval":500} FsWatches:: -/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: - {} /a/lib/lib.d.ts: {} /users/username/projects/myproject/javascript/packages: {} -/users/username/projects/myproject/javascript/packages/recognizers-text/package.json: +/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json: {} /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts: *new* {} +/users/username/projects/myproject/javascript/packages/recognizers-text/package.json: + {} FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} FsWatchesRecursive *deleted*:: -/users/username/projects/myproject/javascript/packages/recognizers-text: - {} /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} +/users/username/projects/myproject/javascript/packages/recognizers-text: + {} Before request diff --git a/tests/baselines/reference/tsserver/symLinks/rename-in-common-file-renames-all-project.js b/tests/baselines/reference/tsserver/symLinks/rename-in-common-file-renames-all-project.js index a6822b8fa3601..20e19e5b51a19 100644 --- a/tests/baselines/reference/tsserver/symLinks/rename-in-common-file-renames-all-project.js +++ b/tests/baselines/reference/tsserver/symLinks/rename-in-common-file-renames-all-project.js @@ -102,11 +102,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/users/username/projects/a/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /users/username/projects/a/c/fc.ts: *new* {} -/a/lib/lib.d.ts: *new* +/users/username/projects/a/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -186,22 +186,22 @@ After request PolledWatches:: /users/username/projects/a/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} /users/username/projects/b/node_modules/@types: *new* {"pollingInterval":500} +/users/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/a/tsconfig.json: +/a/lib/lib.d.ts: {} /users/username/projects/a/c/fc.ts: {} -/a/lib/lib.d.ts: - {} -/users/username/projects/b/tsconfig.json: *new* +/users/username/projects/a/tsconfig.json: {} /users/username/projects/b/c/fc.ts: *new* {} +/users/username/projects/b/tsconfig.json: *new* + {} FsWatchesRecursive:: /users/username/projects/a: @@ -248,20 +248,20 @@ After request PolledWatches:: /users/username/projects/a/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} /users/username/projects/b/node_modules/@types: {"pollingInterval":500} +/users/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/a/tsconfig.json: - {} /a/lib/lib.d.ts: {} -/users/username/projects/b/tsconfig.json: +/users/username/projects/a/tsconfig.json: {} /users/username/projects/b/c/fc.ts: {} +/users/username/projects/b/tsconfig.json: + {} FsWatches *deleted*:: /users/username/projects/a/c/fc.ts: @@ -314,16 +314,16 @@ After request PolledWatches:: /users/username/projects/a/node_modules/@types: {"pollingInterval":500} -/users/username/projects/node_modules/@types: - {"pollingInterval":500} /users/username/projects/b/node_modules/@types: {"pollingInterval":500} +/users/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/users/username/projects/a/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/users/username/projects/a/tsconfig.json: + {} /users/username/projects/b/tsconfig.json: {} diff --git a/tests/baselines/reference/tsserver/symlinkCache/contains-symlinks-discovered-by-project-references-resolution-after-program-creation.js b/tests/baselines/reference/tsserver/symlinkCache/contains-symlinks-discovered-by-project-references-resolution-after-program-creation.js index 8f21b5a7caeff..d850b95d768d7 100644 --- a/tests/baselines/reference/tsserver/symlinkCache/contains-symlinks-discovered-by-project-references-resolution-after-program-creation.js +++ b/tests/baselines/reference/tsserver/symlinkCache/contains-symlinks-discovered-by-project-references-resolution-after-program-creation.js @@ -112,10 +112,10 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/packages/app/dep: *new* - {"pollingInterval":500} /a/lib/lib.d.ts: *new* {"pollingInterval":500} +/packages/app/dep: *new* + {"pollingInterval":500} FsWatches:: /packages/app/tsconfig.json: *new* @@ -126,7 +126,7 @@ FsWatches:: FsWatchesRecursive:: /packages/app: *new* {} -/packages/dep: *new* - {} /packages/app/src: *new* {} +/packages/dep: *new* + {} diff --git a/tests/baselines/reference/tsserver/syntaxOperations/file-is-removed-and-added-with-different-content.js b/tests/baselines/reference/tsserver/syntaxOperations/file-is-removed-and-added-with-different-content.js index e1464a7d4b7ca..298891a168b05 100644 --- a/tests/baselines/reference/tsserver/syntaxOperations/file-is-removed-and-added-with-different-content.js +++ b/tests/baselines/reference/tsserver/syntaxOperations/file-is-removed-and-added-with-different-content.js @@ -84,10 +84,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject: *new* @@ -158,20 +158,20 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/tsconfig. After running Timeout callback:: count: 0 PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules: *new* {"pollingInterval":500} +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} /user/username/projects/node_modules: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} /user/username/projects/myproject/unittest1.ts: *new* {} @@ -210,20 +210,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules: {"pollingInterval":500} +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} /user/username/projects/node_modules: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/unittest1.ts: @@ -432,10 +432,10 @@ PolledWatches *deleted*:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -504,20 +504,20 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/tsconfig. After running Timeout callback:: count: 0 PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules: *new* {"pollingInterval":500} +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} /user/username/projects/node_modules: *new* {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} /user/username/projects/myproject/unittest1.ts: *new* {} @@ -556,20 +556,20 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/node_modules/@types: - {"pollingInterval":500} /user/username/projects/myproject/node_modules: {"pollingInterval":500} +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} /user/username/projects/node_modules: {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatches *deleted*:: /user/username/projects/myproject/unittest1.ts: diff --git a/tests/baselines/reference/tsserver/telemetry/counts-files-by-extension.js b/tests/baselines/reference/tsserver/telemetry/counts-files-by-extension.js index 601ff5fa08826..e2ef4b95df9b4 100644 --- a/tests/baselines/reference/tsserver/telemetry/counts-files-by-extension.js +++ b/tests/baselines/reference/tsserver/telemetry/counts-files-by-extension.js @@ -232,8 +232,6 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/tsconfig.json: *new* - {} /src/dts.d.ts: *new* {} /src/js.js: *new* @@ -244,6 +242,8 @@ FsWatches:: {} /src/tsx.tsx: *new* {} +/tsconfig.json: *new* + {} FsWatchesRecursive:: /src: *new* diff --git a/tests/baselines/reference/tsserver/telemetry/does-not-expose-paths.js b/tests/baselines/reference/tsserver/telemetry/does-not-expose-paths.js index 8783eafda0655..e2c9452aa41a2 100644 --- a/tests/baselines/reference/tsserver/telemetry/does-not-expose-paths.js +++ b/tests/baselines/reference/tsserver/telemetry/does-not-expose-paths.js @@ -480,10 +480,10 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.es2015.d.ts: *new* - {"pollingInterval":500} /a/lib/lib.dom.d.ts: *new* {"pollingInterval":500} +/a/lib/lib.es2015.d.ts: *new* + {"pollingInterval":500} FsWatches:: /tsconfig.json: *new* diff --git a/tests/baselines/reference/tsserver/telemetry/even-for-project-with-ts-check-in-config.js b/tests/baselines/reference/tsserver/telemetry/even-for-project-with-ts-check-in-config.js index 3524c4eb16ca0..dd3f451fe9bd1 100644 --- a/tests/baselines/reference/tsserver/telemetry/even-for-project-with-ts-check-in-config.js +++ b/tests/baselines/reference/tsserver/telemetry/even-for-project-with-ts-check-in-config.js @@ -121,10 +121,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/jsconfig.json: - {} /a/data/package.json: *new* {} +/jsconfig.json: + {} FsWatchesRecursive:: /: @@ -287,10 +287,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/jsconfig.json: - {} /a/data/package.json: {} +/jsconfig.json: + {} FsWatchesRecursive:: /: diff --git a/tests/baselines/reference/tsserver/telemetry/only-sends-an-event-once.js b/tests/baselines/reference/tsserver/telemetry/only-sends-an-event-once.js index 81a3772dcac53..ab5b8323a6ca2 100644 --- a/tests/baselines/reference/tsserver/telemetry/only-sends-an-event-once.js +++ b/tests/baselines/reference/tsserver/telemetry/only-sends-an-event-once.js @@ -216,10 +216,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: - {} /a/a.ts: *new* {} +/a/tsconfig.json: + {} FsWatchesRecursive:: /a: @@ -283,10 +283,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches *deleted*:: -/a/tsconfig.json: - {} /a/a.ts: {} +/a/tsconfig.json: + {} FsWatchesRecursive *deleted*:: /a: diff --git a/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-file-sizes.js b/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-file-sizes.js index 016521576c0c7..089249ef53272 100644 --- a/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-file-sizes.js +++ b/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-file-sizes.js @@ -73,10 +73,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/jsconfig.json: *new* - {} /b.ts: *new* {} +/jsconfig.json: *new* + {} FsWatchesRecursive:: /: *new* @@ -130,11 +130,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/jsconfig.json: +/a/data/package.json: *new* {} /b.ts: {} -/a/data/package.json: *new* +/jsconfig.json: {} FsWatchesRecursive:: @@ -297,11 +297,11 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/jsconfig.json: +/a/data/package.json: {} /b.ts: {} -/a/data/package.json: +/jsconfig.json: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-typeAcquisition-settings.js b/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-typeAcquisition-settings.js index f3961e3bdf21c..e20e108928c8e 100644 --- a/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-typeAcquisition-settings.js +++ b/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-typeAcquisition-settings.js @@ -120,10 +120,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/jsconfig.json: - {} /a/data/package.json: *new* {} +/jsconfig.json: + {} FsWatchesRecursive:: /: @@ -288,10 +288,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/jsconfig.json: - {} /a/data/package.json: {} +/jsconfig.json: + {} FsWatchesRecursive:: /: diff --git a/tests/baselines/reference/tsserver/typeOnlyImportChains/exportDefault-typeOnlyImportDefault-exportDefault-importDefault.js b/tests/baselines/reference/tsserver/typeOnlyImportChains/exportDefault-typeOnlyImportDefault-exportDefault-importDefault.js index a963e94760605..5c443ee47a05b 100644 --- a/tests/baselines/reference/tsserver/typeOnlyImportChains/exportDefault-typeOnlyImportDefault-exportDefault-importDefault.js +++ b/tests/baselines/reference/tsserver/typeOnlyImportChains/exportDefault-typeOnlyImportDefault-exportDefault-importDefault.js @@ -72,12 +72,12 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/b.ts: *new* - {} /a.ts: *new* {} /a/lib/lib.d.ts: *new* {} +/b.ts: *new* + {} Before request diff --git a/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-exportNamespaceFrom-typeOnlyNamedImport-namedExport-namedImport.js b/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-exportNamespaceFrom-typeOnlyNamedImport-namedExport-namedImport.js index 5c9c88b4e848f..8527c7d7c8a6c 100644 --- a/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-exportNamespaceFrom-typeOnlyNamedImport-namedExport-namedImport.js +++ b/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-exportNamespaceFrom-typeOnlyNamedImport-namedExport-namedImport.js @@ -79,14 +79,14 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/c.ts: *new* - {} -/b.ts: *new* - {} /a.ts: *new* {} /a/lib/lib.d.ts: *new* {} +/b.ts: *new* + {} +/c.ts: *new* + {} Before request diff --git a/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyExportFrom-exportStarFrom-namedImport.js b/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyExportFrom-exportStarFrom-namedImport.js index 5958fb2db4de3..123850a01cd62 100644 --- a/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyExportFrom-exportStarFrom-namedImport.js +++ b/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyExportFrom-exportStarFrom-namedImport.js @@ -79,14 +79,14 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/c.ts: *new* - {} -/b.ts: *new* - {} /a.ts: *new* {} /a/lib/lib.d.ts: *new* {} +/b.ts: *new* + {} +/c.ts: *new* + {} Before request diff --git a/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyNamedImport-namedExport-namedImport.js b/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyNamedImport-namedExport-namedImport.js index 7d9d168e78991..88f6049d75cd8 100644 --- a/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyNamedImport-namedExport-namedImport.js +++ b/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyNamedImport-namedExport-namedImport.js @@ -72,12 +72,12 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/b.ts: *new* - {} /a.ts: *new* {} /a/lib/lib.d.ts: *new* {} +/b.ts: *new* + {} Before request diff --git a/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyNamespaceImport-exportDefault-importDefault.js b/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyNamespaceImport-exportDefault-importDefault.js index 761689a426dd2..02d61ccec8bad 100644 --- a/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyNamespaceImport-exportDefault-importDefault.js +++ b/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyNamespaceImport-exportDefault-importDefault.js @@ -72,12 +72,12 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/b.ts: *new* - {} /a.ts: *new* {} /a/lib/lib.d.ts: *new* {} +/b.ts: *new* + {} Before request diff --git a/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyNamespaceImport-exportEquals-importEquals.js b/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyNamespaceImport-exportEquals-importEquals.js index b76480dc5bedf..3a321ef1cc1c9 100644 --- a/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyNamespaceImport-exportEquals-importEquals.js +++ b/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyNamespaceImport-exportEquals-importEquals.js @@ -72,12 +72,12 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/b.ts: *new* - {} /a.ts: *new* {} /a/lib/lib.d.ts: *new* {} +/b.ts: *new* + {} Before request diff --git a/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyNamespaceImport-namedExport-namedImport.js b/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyNamespaceImport-namedExport-namedImport.js index 9326c3c72cba6..3b18d8ee7577c 100644 --- a/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyNamespaceImport-namedExport-namedImport.js +++ b/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeOnlyNamespaceImport-namedExport-namedImport.js @@ -72,12 +72,12 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/b.ts: *new* - {} /a.ts: *new* {} /a/lib/lib.d.ts: *new* {} +/b.ts: *new* + {} Before request diff --git a/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeonlyExportFrom-exportNamespaceFrom-namedImport.js b/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeonlyExportFrom-exportNamespaceFrom-namedImport.js index acb6d8b70f789..a4503810994b8 100644 --- a/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeonlyExportFrom-exportNamespaceFrom-namedImport.js +++ b/tests/baselines/reference/tsserver/typeOnlyImportChains/namedExport-typeonlyExportFrom-exportNamespaceFrom-namedImport.js @@ -79,14 +79,14 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/c.ts: *new* - {} -/b.ts: *new* - {} /a.ts: *new* {} /a/lib/lib.d.ts: *new* {} +/b.ts: *new* + {} +/c.ts: *new* + {} Before request diff --git a/tests/baselines/reference/tsserver/typeReferenceDirectives/when-typeReferenceDirective-contains-UpperCasePackage.js b/tests/baselines/reference/tsserver/typeReferenceDirectives/when-typeReferenceDirective-contains-UpperCasePackage.js index 60c8143714f5c..f35761dd81655 100644 --- a/tests/baselines/reference/tsserver/typeReferenceDirectives/when-typeReferenceDirective-contains-UpperCasePackage.js +++ b/tests/baselines/reference/tsserver/typeReferenceDirectives/when-typeReferenceDirective-contains-UpperCasePackage.js @@ -119,23 +119,23 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/user/username/projects/myproject/test/tsconfig.json: *new* - {} -/user/username/projects/myproject/lib/@types/uppercasepackage/index.d.ts: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject/lib/@app/lib/index.d.ts: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/lib/@types/uppercasepackage/index.d.ts: *new* + {} +/user/username/projects/myproject/test/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/test: *new* - {} /user/username/projects/myproject/lib: *new* {} +/user/username/projects/myproject/lib/@app: *new* + {} /user/username/projects/myproject/lib/@types: *new* {} -/user/username/projects/myproject/lib/@app: *new* +/user/username/projects/myproject/test: *new* {} Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /user/username/projects/myproject/lib/@app/lib/index.d.ts 1:: WatchInfo: /user/username/projects/myproject/lib/@app/lib/index.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/typeReferenceDirectives/when-typeReferenceDirective-is-relative-path-and-in-a-sibling-folder.js b/tests/baselines/reference/tsserver/typeReferenceDirectives/when-typeReferenceDirective-is-relative-path-and-in-a-sibling-folder.js index e5fe9e48db2b1..8fef335d3b2e3 100644 --- a/tests/baselines/reference/tsserver/typeReferenceDirectives/when-typeReferenceDirective-is-relative-path-and-in-a-sibling-folder.js +++ b/tests/baselines/reference/tsserver/typeReferenceDirectives/when-typeReferenceDirective-is-relative-path-and-in-a-sibling-folder.js @@ -97,12 +97,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: *new* + {} /user/username/projects/myproject/background/tsconfig.json: *new* {} /user/username/projects/myproject/typedefs/filesystem.d.ts: *new* {} -/a/lib/lib.d.ts: *new* - {} FsWatchesRecursive:: /user/username/projects/myproject/background: *new* diff --git a/tests/baselines/reference/tsserver/typingsInstaller/cached-unresolved-typings-are-not-recomputed-if-program-structure-did-not-change.js b/tests/baselines/reference/tsserver/typingsInstaller/cached-unresolved-typings-are-not-recomputed-if-program-structure-did-not-change.js index 8dbc6e647a09b..ec144fd0ac14c 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/cached-unresolved-typings-are-not-recomputed-if-program-structure-did-not-change.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/cached-unresolved-typings-are-not-recomputed-if-program-structure-did-not-change.js @@ -86,10 +86,10 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/bower_components: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} /a/node_modules: *new* {"pollingInterval":500} diff --git a/tests/baselines/reference/tsserver/typingsInstaller/configured-projects.js b/tests/baselines/reference/tsserver/typingsInstaller/configured-projects.js index 5f5b6f05eae30..61044d7c076a0 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/configured-projects.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/configured-projects.js @@ -116,18 +116,18 @@ TI:: [hh:mm:ss:mss] #1 with arguments'["@types/jquery@tsFakeMajor.Minor"]':: tru TI:: Before installWorker PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/bower_components: *new* {"pollingInterval":500} /a/b/node_modules: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: - {} /a/b/package.json: *new* {} +/a/b/tsconfig.json: + {} FsWatchesRecursive:: /a/b: diff --git a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-bower.js b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-bower.js index b762d5b21066f..05abf430c6853 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-bower.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-bower.js @@ -165,12 +165,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/bower.json: *new* + {} /jsconfig.json: {} /tmp/package.json: {} -/bower.json: *new* - {} FsWatchesRecursive:: /: diff --git a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types-has-import.js b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types-has-import.js index 4cb01d5b48d79..9d12b2dc34a13 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types-has-import.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types-has-import.js @@ -205,10 +205,10 @@ PolledWatches:: FsWatches:: /jsconfig.json: {} -/tmp/package.json: - {} /package.json: *new* {} +/tmp/package.json: + {} FsWatchesRecursive:: /: diff --git a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types.js b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types.js index 130e5ee7cb5a1..d977f0ec5a368 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types.js @@ -213,10 +213,10 @@ PolledWatches:: FsWatches:: /jsconfig.json: {} -/tmp/package.json: - {} /package.json: *new* {} +/tmp/package.json: + {} FsWatchesRecursive:: /: diff --git a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-explicit-types.js b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-explicit-types.js index b32d9dc6af399..795f3ed909998 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-explicit-types.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-explicit-types.js @@ -215,10 +215,10 @@ PolledWatches:: FsWatches:: /jsconfig.json: {} -/tmp/package.json: - {} /package.json: *new* {} +/tmp/package.json: + {} FsWatchesRecursive:: /: diff --git a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules.js b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules.js index 88ca395c3d79a..4ae7db4eac00e 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules.js @@ -223,10 +223,10 @@ PolledWatches:: FsWatches:: /jsconfig.json: {} -/tmp/package.json: - {} /package.json: *new* {} +/tmp/package.json: + {} FsWatchesRecursive:: /: diff --git a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-autoDiscovery.js b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-autoDiscovery.js index 6e0a6385e3501..0b35107e2b4d6 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-autoDiscovery.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-autoDiscovery.js @@ -83,12 +83,12 @@ TI:: [hh:mm:ss:mss] #1 with arguments'["@types/jquery@tsFakeMajor.Minor"]':: tru TI:: Before installWorker PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/app/bower_components: *new* {"pollingInterval":500} /a/app/node_modules: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} FsWatches:: /a/b/app.ts: diff --git a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-no-type-acquisition.js b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-no-type-acquisition.js index c0067691213f8..8fe8a05abbe5d 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-no-type-acquisition.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-no-type-acquisition.js @@ -134,15 +134,15 @@ TI:: [hh:mm:ss:mss] #1 with arguments'["@types/lodash@tsFakeMajor.Minor","@types TI:: Before installWorker PolledWatches:: -/a/lib/lib.d.ts: +/a/app/bower_components: *new* + {"pollingInterval":500} +/a/app/node_modules: *new* {"pollingInterval":500} /a/b/bower_components: *new* {"pollingInterval":500} /a/b/node_modules: *new* {"pollingInterval":500} -/a/app/bower_components: *new* - {"pollingInterval":500} -/a/app/node_modules: *new* +/a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: diff --git a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition.js b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition.js index 960b8538f655c..557e40b61099e 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition.js @@ -156,15 +156,15 @@ TI:: [hh:mm:ss:mss] #1 with arguments'["@types/jquery@tsFakeMajor.Minor","@types TI:: Before installWorker PolledWatches:: -/a/lib/lib.d.ts: +/a/app/bower_components: *new* + {"pollingInterval":500} +/a/app/node_modules: *new* {"pollingInterval":500} /a/b/bower_components: *new* {"pollingInterval":500} /a/b/node_modules: *new* {"pollingInterval":500} -/a/app/bower_components: *new* - {"pollingInterval":500} -/a/app/node_modules: *new* +/a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: diff --git a/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects-with-disableFilenameBasedTypeAcquisition.js b/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects-with-disableFilenameBasedTypeAcquisition.js index 16bff1c73b17a..336e977d9a3e8 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects-with-disableFilenameBasedTypeAcquisition.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects-with-disableFilenameBasedTypeAcquisition.js @@ -84,9 +84,9 @@ Timeout callback:: count: 0 Immedidate callback:: count: 0 PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/bower_components: *new* {"pollingInterval":500} /a/b/node_modules: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} diff --git a/tests/baselines/reference/tsserver/typingsInstaller/install-typings-for-unresolved-imports.js b/tests/baselines/reference/tsserver/typingsInstaller/install-typings-for-unresolved-imports.js index bb5b4c892d9ae..e9818df19c7f2 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/install-typings-for-unresolved-imports.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/install-typings-for-unresolved-imports.js @@ -102,12 +102,12 @@ TI:: [hh:mm:ss:mss] #1 with arguments'["@types/commander@tsFakeMajor.Minor","@ty TI:: Before installWorker PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/bower_components: *new* {"pollingInterval":500} /a/b/node_modules: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} TI:: After installWorker //// [/a/cache/node_modules/@types/node/index.d.ts] diff --git a/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions-with-trimmed-names.js b/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions-with-trimmed-names.js index d45f1241cd01c..548ce46c53b0c 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions-with-trimmed-names.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions-with-trimmed-names.js @@ -105,10 +105,10 @@ TI:: [hh:mm:ss:mss] #1 with arguments'["@types/foo@tsFakeMajor.Minor"]':: true TI:: Before installWorker PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/bower_components: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} FsWatchesRecursive:: /a/b/node_modules: diff --git a/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions.js b/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions.js index 9909e40ceba82..7b70592aa90cc 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions.js @@ -101,10 +101,10 @@ TI:: [hh:mm:ss:mss] #1 with arguments'["@types/foo@tsFakeMajor.Minor"]':: true TI:: Before installWorker PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/bower_components: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} FsWatchesRecursive:: /a/b/node_modules: diff --git a/tests/baselines/reference/tsserver/typingsInstaller/local-module-should-not-be-picked-up.js b/tests/baselines/reference/tsserver/typingsInstaller/local-module-should-not-be-picked-up.js index 90f80dbd019d8..cb4670770f5aa 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/local-module-should-not-be-picked-up.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/local-module-should-not-be-picked-up.js @@ -58,10 +58,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/jsconfig.json: *new* - {} /a/config.js: *new* {} +/a/jsconfig.json: *new* + {} FsWatchesRecursive:: /a: *new* diff --git a/tests/baselines/reference/tsserver/typingsInstaller/malformed-packagejson.js b/tests/baselines/reference/tsserver/typingsInstaller/malformed-packagejson.js index 0fa9e16bb57d8..b22e07f49825d 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/malformed-packagejson.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/malformed-packagejson.js @@ -116,12 +116,12 @@ Immedidate callback:: count: 0 PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/bower_components: *new* {"pollingInterval":500} /a/b/node_modules: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} FsWatches:: /a/b/package.json: *new* diff --git a/tests/baselines/reference/tsserver/typingsInstaller/multiple-projects.js b/tests/baselines/reference/tsserver/typingsInstaller/multiple-projects.js index 247d07115eefe..ca20e209404ff 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/multiple-projects.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/multiple-projects.js @@ -79,16 +79,16 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- TI:: Creating typing installer PolledWatches:: -/user/username/projects/project/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} FsWatches:: -/user/username/projects/project/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/project/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/project: *new* @@ -173,22 +173,22 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/project/node_modules/@types: - {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} /user/username/projects/project/bower_components: *new* {"pollingInterval":500} /user/username/projects/project/node_modules: *new* {"pollingInterval":500} +/user/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} /user/username/projects/project/package.json: *new* {} +/user/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/project: @@ -289,23 +289,23 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/project/node_modules/@types: - {"pollingInterval":500} /user/username/projects/node_modules/@types: {"pollingInterval":500} /user/username/projects/project/bower_components: {"pollingInterval":500} /user/username/projects/project/node_modules: {"pollingInterval":500} +/user/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: -/user/username/projects/project/tsconfig.json: - {} /a/lib/lib.d.ts: {} +/user/username/projects/project/app.js: *new* + {} /user/username/projects/project/package.json: {} -/user/username/projects/project/app.js: *new* +/user/username/projects/project/tsconfig.json: {} FsWatchesRecursive:: @@ -427,36 +427,36 @@ After request PolledWatches:: /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/project2/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/project2/bower_components: *new* {"pollingInterval":500} /user/username/projects/project2/node_modules: *new* {"pollingInterval":500} +/user/username/projects/project2/node_modules/@types: *new* + {"pollingInterval":500} PolledWatches *deleted*:: -/user/username/projects/project/node_modules/@types: - {"pollingInterval":500} /user/username/projects/project/bower_components: {"pollingInterval":500} /user/username/projects/project/node_modules: {"pollingInterval":500} +/user/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/project/package.json: {} -/user/username/projects/project2/tsconfig.json: *new* - {} /user/username/projects/project2/package.json: *new* {} +/user/username/projects/project2/tsconfig.json: *new* + {} FsWatches *deleted*:: -/user/username/projects/project/tsconfig.json: - {} /user/username/projects/project/app.js: {} +/user/username/projects/project/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/project2: *new* diff --git a/tests/baselines/reference/tsserver/typingsInstaller/pick-typing-names-from-nonrelative-unresolved-imports.js b/tests/baselines/reference/tsserver/typingsInstaller/pick-typing-names-from-nonrelative-unresolved-imports.js index 24d40c17cb0af..b7e8c99485ba1 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/pick-typing-names-from-nonrelative-unresolved-imports.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/pick-typing-names-from-nonrelative-unresolved-imports.js @@ -104,14 +104,14 @@ TI:: [hh:mm:ss:mss] #1 with arguments'["@types/foo@tsFakeMajor.Minor"]':: true TI:: Before installWorker PolledWatches:: -/a/b/lib: - {"pollingInterval":500} -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/b/bower_components: *new* {"pollingInterval":500} +/a/b/lib: + {"pollingInterval":500} /a/b/node_modules: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} TI:: After installWorker diff --git a/tests/baselines/reference/tsserver/typingsInstaller/progress-notification-for-error.js b/tests/baselines/reference/tsserver/typingsInstaller/progress-notification-for-error.js index 7cfc7b7811432..10072f90cc2be 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/progress-notification-for-error.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/progress-notification-for-error.js @@ -93,10 +93,10 @@ TI:: [hh:mm:ss:mss] #1 with arguments'["@types/commander@tsFakeMajor.Minor"]':: TI:: Before installWorker PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/bower_components: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} /a/node_modules: *new* {"pollingInterval":500} diff --git a/tests/baselines/reference/tsserver/typingsInstaller/progress-notification.js b/tests/baselines/reference/tsserver/typingsInstaller/progress-notification.js index 6a8fafc0a2a52..5b504c8f6d31e 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/progress-notification.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/progress-notification.js @@ -96,10 +96,10 @@ TI:: [hh:mm:ss:mss] #1 with arguments'["@types/commander@tsFakeMajor.Minor"]':: TI:: Before installWorker PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/bower_components: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} /a/node_modules: *new* {"pollingInterval":500} diff --git a/tests/baselines/reference/tsserver/typingsInstaller/projectRootPath-is-provided-for-inferred-project.js b/tests/baselines/reference/tsserver/typingsInstaller/projectRootPath-is-provided-for-inferred-project.js index b3d2f07fa6de2..398d423ef4b53 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/projectRootPath-is-provided-for-inferred-project.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/projectRootPath-is-provided-for-inferred-project.js @@ -43,16 +43,16 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- TI:: Creating typing installer PolledWatches:: -/user/username/projects/san2/tsconfig.json: *new* - {"pollingInterval":2000} -/user/username/projects/san2/jsconfig.json: *new* - {"pollingInterval":2000} /a/lib/lib.es2016.full.d.ts: *new* {"pollingInterval":500} -/user/username/projects/san2/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/san2/jsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/san2/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/san2/tsconfig.json: *new* + {"pollingInterval":2000} TI:: [hh:mm:ss:mss] Global cache location '/users/username/Library/Caches/typescript/2.7', safe file path '/safeList.json', types map path /typesMap.json TI:: [hh:mm:ss:mss] Processing cache location '/users/username/Library/Caches/typescript/2.7' diff --git a/tests/baselines/reference/tsserver/typingsInstaller/redo-resolutions-pointing-to-js-on-typing-install.js b/tests/baselines/reference/tsserver/typingsInstaller/redo-resolutions-pointing-to-js-on-typing-install.js index 54431ae483d57..f1dd3ba51ce76 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/redo-resolutions-pointing-to-js-on-typing-install.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/redo-resolutions-pointing-to-js-on-typing-install.js @@ -47,24 +47,24 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- TI:: Creating typing installer PolledWatches:: -/user/username/projects/a/b/tsconfig.json: *new* - {"pollingInterval":2000} +/a/lib/lib.d.ts: *new* + {"pollingInterval":500} /user/username/projects/a/b/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/a/tsconfig.json: *new* +/user/username/projects/a/b/node_modules: *new* + {"pollingInterval":500} +/user/username/projects/a/b/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/a/b/tsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/a/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/a/b/node_modules: *new* - {"pollingInterval":500} /user/username/projects/a/node_modules: *new* {"pollingInterval":500} -/a/lib/lib.d.ts: *new* - {"pollingInterval":500} -/user/username/projects/a/b/node_modules/@types: *new* - {"pollingInterval":500} /user/username/projects/a/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/a/tsconfig.json: *new* + {"pollingInterval":2000} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} @@ -134,28 +134,28 @@ TI:: [hh:mm:ss:mss] #1 with arguments'["@types/commander@tsFakeMajor.Minor"]':: TI:: Before installWorker PolledWatches:: -/user/username/projects/a/b/tsconfig.json: - {"pollingInterval":2000} +/a/lib/lib.d.ts: + {"pollingInterval":500} +/user/username/projects/a/b/bower_components: *new* + {"pollingInterval":500} /user/username/projects/a/b/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/a/tsconfig.json: +/user/username/projects/a/b/node_modules: + {"pollingInterval":500} +/user/username/projects/a/b/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/a/b/tsconfig.json: {"pollingInterval":2000} /user/username/projects/a/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/a/b/node_modules: - {"pollingInterval":500} /user/username/projects/a/node_modules: {"pollingInterval":500} -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/a/b/node_modules/@types: - {"pollingInterval":500} /user/username/projects/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/a/tsconfig.json: + {"pollingInterval":2000} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/a/b/bower_components: *new* - {"pollingInterval":500} FsWatchesRecursive:: /user/username/projects/node_modules: @@ -216,31 +216,31 @@ After running Timeout callback:: count: 2 4: *ensureProjectForOpenFiles* PolledWatches:: -/user/username/projects/a/b/tsconfig.json: - {"pollingInterval":2000} +/a/lib/lib.d.ts: + {"pollingInterval":500} +/user/username/projects/a/b/bower_components: + {"pollingInterval":500} /user/username/projects/a/b/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/a/tsconfig.json: +/user/username/projects/a/b/node_modules: + {"pollingInterval":500} +/user/username/projects/a/b/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/a/b/tsconfig.json: {"pollingInterval":2000} /user/username/projects/a/jsconfig.json: {"pollingInterval":2000} -/user/username/projects/a/b/node_modules: - {"pollingInterval":500} /user/username/projects/a/node_modules: {"pollingInterval":500} -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/a/b/node_modules/@types: - {"pollingInterval":500} /user/username/projects/a/node_modules/@types: {"pollingInterval":500} +/user/username/projects/a/tsconfig.json: + {"pollingInterval":2000} /user/username/projects/node_modules/@types: {"pollingInterval":500} -/user/username/projects/a/b/bower_components: - {"pollingInterval":500} FsWatchesRecursive:: -/user/username/projects/node_modules: - {} /user/username/projects/a/cache/node_modules: *new* {} +/user/username/projects/node_modules: + {} diff --git a/tests/baselines/reference/tsserver/typingsInstaller/scoped-name-discovery.js b/tests/baselines/reference/tsserver/typingsInstaller/scoped-name-discovery.js index fcab9715d2ba4..de12e9577d094 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/scoped-name-discovery.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/scoped-name-discovery.js @@ -220,10 +220,10 @@ PolledWatches:: FsWatches:: /jsconfig.json: {} -/tmp/package.json: - {} /package.json: *new* {} +/tmp/package.json: + {} FsWatchesRecursive:: /: diff --git a/tests/baselines/reference/tsserver/typingsInstaller/telemetry-events.js b/tests/baselines/reference/tsserver/typingsInstaller/telemetry-events.js index fbafc95e77fdf..825841a53824c 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/telemetry-events.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/telemetry-events.js @@ -93,10 +93,10 @@ TI:: [hh:mm:ss:mss] #1 with arguments'["@types/commander@tsFakeMajor.Minor"]':: TI:: Before installWorker PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} /a/bower_components: *new* {"pollingInterval":500} +/a/lib/lib.d.ts: + {"pollingInterval":500} /a/node_modules: *new* {"pollingInterval":500} diff --git a/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-run-install-requests.js b/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-run-install-requests.js index 3f57e4b7bb132..0464a6d5f9cdd 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-run-install-requests.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-run-install-requests.js @@ -202,15 +202,15 @@ TI:: [hh:mm:ss:mss] #1 with arguments'["@types/jquery@tsFakeMajor.Minor","@types TI:: Before installWorker PolledWatches:: -/a/lib/lib.d.ts: +/a/app/bower_components: *new* + {"pollingInterval":500} +/a/app/node_modules: *new* {"pollingInterval":500} /a/b/bower_components: *new* {"pollingInterval":500} /a/b/node_modules: *new* {"pollingInterval":500} -/a/app/bower_components: *new* - {"pollingInterval":500} -/a/app/node_modules: *new* +/a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: diff --git a/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-typings-to-install.js b/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-typings-to-install.js index 2f296a5e53929..79f50357d5097 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-typings-to-install.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-typings-to-install.js @@ -166,15 +166,15 @@ TI:: [hh:mm:ss:mss] #1 with arguments'["@types/jquery@tsFakeMajor.Minor","@types TI:: Before installWorker PolledWatches:: -/a/lib/lib.d.ts: +/a/app/bower_components: *new* + {"pollingInterval":500} +/a/app/node_modules: *new* {"pollingInterval":500} /a/b/bower_components: *new* {"pollingInterval":500} /a/b/node_modules: *new* {"pollingInterval":500} -/a/app/bower_components: *new* - {"pollingInterval":500} -/a/app/node_modules: *new* +/a/lib/lib.d.ts: {"pollingInterval":500} FsWatches:: diff --git a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-in-host-configuration.js b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-in-host-configuration.js index c366c6c39b668..87d7d37f802e6 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-in-host-configuration.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-in-host-configuration.js @@ -123,10 +123,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/src/main.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/src/main.ts: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/src: *new* diff --git a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options.js b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options.js index 7ac99c8625de5..09cfa6c421a03 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options.js @@ -94,10 +94,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/src/main.ts: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/src/main.ts: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: *new* diff --git a/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js b/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js index 51c9b2aec80b5..916c27947e1ba 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js @@ -87,11 +87,11 @@ c:/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -c:/project/tsconfig.json: *new* +c:/a/lib/lib.d.ts: *new* {} c:/project/file2.ts: *new* {} -c:/a/lib/lib.d.ts: *new* +c:/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/watchEnvironment/files-at-windows-style-root.js b/tests/baselines/reference/tsserver/watchEnvironment/files-at-windows-style-root.js index 51c9b2aec80b5..916c27947e1ba 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/files-at-windows-style-root.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/files-at-windows-style-root.js @@ -87,11 +87,11 @@ c:/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -c:/project/tsconfig.json: *new* +c:/a/lib/lib.d.ts: *new* {} c:/project/file2.ts: *new* {} -c:/a/lib/lib.d.ts: *new* +c:/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-root.js b/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-root.js index e3c3caeb5dcde..a51da4cd3bee0 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-root.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-root.js @@ -87,19 +87,19 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -c:/myfolder/allproject/project/node_modules/@types: *new* - {"pollingInterval":500} c:/myfolder/allproject/node_modules/@types: *new* {"pollingInterval":500} +c:/myfolder/allproject/project/node_modules/@types: *new* + {"pollingInterval":500} c:/myfolder/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -c:/myfolder/allproject/project/tsconfig.json: *new* +c:/a/lib/lib.d.ts: *new* {} c:/myfolder/allproject/project/file2.ts: *new* {} -c:/a/lib/lib.d.ts: *new* +c:/myfolder/allproject/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-windows-style-root.js b/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-windows-style-root.js index e3c3caeb5dcde..a51da4cd3bee0 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-windows-style-root.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-windows-style-root.js @@ -87,19 +87,19 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -c:/myfolder/allproject/project/node_modules/@types: *new* - {"pollingInterval":500} c:/myfolder/allproject/node_modules/@types: *new* {"pollingInterval":500} +c:/myfolder/allproject/project/node_modules/@types: *new* + {"pollingInterval":500} c:/myfolder/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -c:/myfolder/allproject/project/tsconfig.json: *new* +c:/a/lib/lib.d.ts: *new* {} c:/myfolder/allproject/project/file2.ts: *new* {} -c:/a/lib/lib.d.ts: *new* +c:/myfolder/allproject/project/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-in-host-configuration.js b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-in-host-configuration.js index 88307d2edd5f6..a781a636643c6 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-in-host-configuration.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-in-host-configuration.js @@ -135,13 +135,13 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/src/tsconfig.json: *new* +/user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: *new* +/user/username/projects/myproject/src/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: *new* +/user/username/projects/myproject/tsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} diff --git a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options.js b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options.js index 698d86b940b81..016a396940de9 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options.js @@ -106,13 +106,13 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/src/tsconfig.json: *new* +/user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: *new* +/user/username/projects/myproject/src/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: *new* +/user/username/projects/myproject/tsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} diff --git a/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names-with-i.js b/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names-with-i.js index d9ec22a36ea01..470ca7e0b105c 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names-with-i.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names-with-i.js @@ -69,16 +69,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/i/tsconfig.json: *new* - {"pollingInterval":2000} /user/username/projects/i/jsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/i/node_modules: *new* {"pollingInterval":500} -/user/username/projects/node_modules: *new* - {"pollingInterval":500} /user/username/projects/i/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/i/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/node_modules: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} diff --git a/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names.js b/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names.js index 27a330a15da55..b643a3a0f330a 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names.js @@ -69,16 +69,16 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/i/tsconfig.json: *new* - {"pollingInterval":2000} /user/username/projects/i/jsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/i/node_modules: *new* {"pollingInterval":500} -/user/username/projects/node_modules: *new* - {"pollingInterval":500} /user/username/projects/i/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/i/tsconfig.json: *new* + {"pollingInterval":2000} +/user/username/projects/node_modules: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} diff --git a/tests/baselines/reference/tsserver/watchEnvironment/project-with-unicode-file-names.js b/tests/baselines/reference/tsserver/watchEnvironment/project-with-unicode-file-names.js index db5fa0364d0d1..1dc7fc2520a2f 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/project-with-unicode-file-names.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/project-with-unicode-file-names.js @@ -69,18 +69,18 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/İ/tsconfig.json: *new* - {"pollingInterval":2000} +/user/username/projects/node_modules: *new* + {"pollingInterval":500} +/user/username/projects/node_modules/@types: *new* + {"pollingInterval":500} /user/username/projects/İ/jsconfig.json: *new* {"pollingInterval":2000} /user/username/projects/İ/node_modules: *new* {"pollingInterval":500} -/user/username/projects/node_modules: *new* - {"pollingInterval":500} /user/username/projects/İ/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/node_modules/@types: *new* - {"pollingInterval":500} +/user/username/projects/İ/tsconfig.json: *new* + {"pollingInterval":2000} FsWatches:: /a/lib/lib.d.ts: *new* diff --git a/tests/baselines/reference/tsserver/watchEnvironment/recursive-directory-does-not-watch-files-starting-with-dot-in-node_modules.js b/tests/baselines/reference/tsserver/watchEnvironment/recursive-directory-does-not-watch-files-starting-with-dot-in-node_modules.js index 191912e1516de..c76387166d6d1 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/recursive-directory-does-not-watch-files-starting-with-dot-in-node_modules.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/recursive-directory-does-not-watch-files-starting-with-dot-in-node_modules.js @@ -94,7 +94,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/username/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /a/username/project: *new* {} @@ -104,7 +104,7 @@ FsWatches:: {} /a/username/project/src/file1.ts: *new* {} -/a/lib/lib.d.ts: *new* +/a/username/project/tsconfig.json: *new* {} Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/watchEnvironment/uses-dynamic-polling-when-file-is-added-to-subfolder.js b/tests/baselines/reference/tsserver/watchEnvironment/uses-dynamic-polling-when-file-is-added-to-subfolder.js index 7bd45e1da71eb..5b251ba994282 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/uses-dynamic-polling-when-file-is-added-to-subfolder.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/uses-dynamic-polling-when-file-is-added-to-subfolder.js @@ -91,11 +91,11 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/username/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /a/username/project/src/file1.ts: *new* {} -/a/lib/lib.d.ts: *new* +/a/username/project/tsconfig.json: *new* {} Before request @@ -212,11 +212,11 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/username/project/tsconfig.json: +/a/lib/lib.d.ts: {} /a/username/project/src/file1.ts: {} -/a/lib/lib.d.ts: - {} /a/username/project/src/file2.ts: *new* {} +/a/username/project/tsconfig.json: + {} diff --git a/tests/baselines/reference/tsserver/watchEnvironment/uses-non-recursive-watchDirectory-when-file-is-added-to-subfolder.js b/tests/baselines/reference/tsserver/watchEnvironment/uses-non-recursive-watchDirectory-when-file-is-added-to-subfolder.js index 1c1ae04b68e09..c577b2422c12f 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/uses-non-recursive-watchDirectory-when-file-is-added-to-subfolder.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/uses-non-recursive-watchDirectory-when-file-is-added-to-subfolder.js @@ -95,7 +95,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/username/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /a/username/project: *new* {} @@ -103,7 +103,7 @@ FsWatches:: {} /a/username/project/src/file1.ts: *new* {} -/a/lib/lib.d.ts: *new* +/a/username/project/tsconfig.json: *new* {} Before request @@ -200,7 +200,7 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/a/username/project/tsconfig.json: +/a/lib/lib.d.ts: {} /a/username/project: {} @@ -208,10 +208,10 @@ FsWatches:: {} /a/username/project/src/file1.ts: {} -/a/lib/lib.d.ts: - {} /a/username/project/src/file2.ts: *new* {} +/a/username/project/tsconfig.json: + {} Before request diff --git a/tests/baselines/reference/tsserver/watchEnvironment/uses-watchFile-when-file-is-added-to-subfolder.js b/tests/baselines/reference/tsserver/watchEnvironment/uses-watchFile-when-file-is-added-to-subfolder.js index defb7909b095f..14be6573954c8 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/uses-watchFile-when-file-is-added-to-subfolder.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/uses-watchFile-when-file-is-added-to-subfolder.js @@ -93,17 +93,17 @@ After request PolledWatches:: /a/username/project: *new* {"pollingInterval":500} -/a/username/project/src: *new* - {"pollingInterval":500} /a/username/project/node_modules/@types: *new* {"pollingInterval":500} +/a/username/project/src: *new* + {"pollingInterval":500} FsWatches:: -/a/username/project/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /a/username/project/src/file1.ts: *new* {} -/a/lib/lib.d.ts: *new* +/a/username/project/tsconfig.json: *new* {} Before request @@ -183,20 +183,20 @@ After running Timeout callback:: count: 1 PolledWatches:: /a/username/project: {"pollingInterval":500} -/a/username/project/src: - {"pollingInterval":500} /a/username/project/node_modules/@types: {"pollingInterval":500} +/a/username/project/src: + {"pollingInterval":500} FsWatches:: -/a/username/project/tsconfig.json: +/a/lib/lib.d.ts: {} /a/username/project/src/file1.ts: {} -/a/lib/lib.d.ts: - {} /a/username/project/src/file2.ts: *new* {} +/a/username/project/tsconfig.json: + {} Before request diff --git a/tests/baselines/reference/tsserver/watchEnvironment/watching-files-with-network-style-paths.js b/tests/baselines/reference/tsserver/watchEnvironment/watching-files-with-network-style-paths.js index 2121ffcc6a073..33ba3a20cf172 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/watching-files-with-network-style-paths.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/watching-files-with-network-style-paths.js @@ -54,14 +54,14 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- TI:: Creating typing installer PolledWatches:: -c:/myprojects/project/tsconfig.json: *new* - {"pollingInterval":2000} +c:/myprojects/node_modules/@types: *new* + {"pollingInterval":500} c:/myprojects/project/jsconfig.json: *new* {"pollingInterval":2000} c:/myprojects/project/node_modules/@types: *new* {"pollingInterval":500} -c:/myprojects/node_modules/@types: *new* - {"pollingInterval":500} +c:/myprojects/project/tsconfig.json: *new* + {"pollingInterval":2000} FsWatches:: c:/a/lib/lib.d.ts: *new* @@ -118,18 +118,18 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -c:/myprojects/project/tsconfig.json: - {"pollingInterval":2000} -c:/myprojects/project/jsconfig.json: - {"pollingInterval":2000} -c:/myprojects/project/node_modules/@types: - {"pollingInterval":500} c:/myprojects/node_modules/@types: {"pollingInterval":500} c:/myprojects/project/bower_components: *new* {"pollingInterval":500} +c:/myprojects/project/jsconfig.json: + {"pollingInterval":2000} c:/myprojects/project/node_modules: *new* {"pollingInterval":500} +c:/myprojects/project/node_modules/@types: + {"pollingInterval":500} +c:/myprojects/project/tsconfig.json: + {"pollingInterval":2000} FsWatches:: c:/a/lib/lib.d.ts: @@ -304,14 +304,14 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- TI:: Creating typing installer PolledWatches:: -//vda1cs4850/c$/myprojects/project/tsconfig.json: *new* - {"pollingInterval":2000} +//vda1cs4850/c$/myprojects/node_modules/@types: *new* + {"pollingInterval":500} //vda1cs4850/c$/myprojects/project/jsconfig.json: *new* {"pollingInterval":2000} //vda1cs4850/c$/myprojects/project/node_modules/@types: *new* {"pollingInterval":500} -//vda1cs4850/c$/myprojects/node_modules/@types: *new* - {"pollingInterval":500} +//vda1cs4850/c$/myprojects/project/tsconfig.json: *new* + {"pollingInterval":2000} FsWatches:: //vda1cs4850/a/lib/lib.d.ts: *new* @@ -368,18 +368,18 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -//vda1cs4850/c$/myprojects/project/tsconfig.json: - {"pollingInterval":2000} -//vda1cs4850/c$/myprojects/project/jsconfig.json: - {"pollingInterval":2000} -//vda1cs4850/c$/myprojects/project/node_modules/@types: - {"pollingInterval":500} //vda1cs4850/c$/myprojects/node_modules/@types: {"pollingInterval":500} //vda1cs4850/c$/myprojects/project/bower_components: *new* {"pollingInterval":500} +//vda1cs4850/c$/myprojects/project/jsconfig.json: + {"pollingInterval":2000} //vda1cs4850/c$/myprojects/project/node_modules: *new* {"pollingInterval":500} +//vda1cs4850/c$/myprojects/project/node_modules/@types: + {"pollingInterval":500} +//vda1cs4850/c$/myprojects/project/tsconfig.json: + {"pollingInterval":2000} FsWatches:: //vda1cs4850/a/lib/lib.d.ts: @@ -441,14 +441,14 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- TI:: Creating typing installer PolledWatches:: -c:/users/username/myprojects/project/tsconfig.json: *new* - {"pollingInterval":2000} +c:/users/username/myprojects/node_modules/@types: *new* + {"pollingInterval":500} c:/users/username/myprojects/project/jsconfig.json: *new* {"pollingInterval":2000} c:/users/username/myprojects/project/node_modules/@types: *new* {"pollingInterval":500} -c:/users/username/myprojects/node_modules/@types: *new* - {"pollingInterval":500} +c:/users/username/myprojects/project/tsconfig.json: *new* + {"pollingInterval":2000} FsWatches:: c:/a/lib/lib.d.ts: *new* @@ -505,18 +505,18 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -c:/users/username/myprojects/project/tsconfig.json: - {"pollingInterval":2000} -c:/users/username/myprojects/project/jsconfig.json: - {"pollingInterval":2000} -c:/users/username/myprojects/project/node_modules/@types: - {"pollingInterval":500} c:/users/username/myprojects/node_modules/@types: {"pollingInterval":500} c:/users/username/myprojects/project/bower_components: *new* {"pollingInterval":500} +c:/users/username/myprojects/project/jsconfig.json: + {"pollingInterval":2000} c:/users/username/myprojects/project/node_modules: *new* {"pollingInterval":500} +c:/users/username/myprojects/project/node_modules/@types: + {"pollingInterval":500} +c:/users/username/myprojects/project/tsconfig.json: + {"pollingInterval":2000} FsWatches:: c:/a/lib/lib.d.ts: @@ -578,14 +578,14 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- TI:: Creating typing installer PolledWatches:: -//vda1cs4850/c$/users/username/myprojects/project/tsconfig.json: *new* - {"pollingInterval":2000} +//vda1cs4850/c$/users/username/myprojects/node_modules/@types: *new* + {"pollingInterval":500} //vda1cs4850/c$/users/username/myprojects/project/jsconfig.json: *new* {"pollingInterval":2000} //vda1cs4850/c$/users/username/myprojects/project/node_modules/@types: *new* {"pollingInterval":500} -//vda1cs4850/c$/users/username/myprojects/node_modules/@types: *new* - {"pollingInterval":500} +//vda1cs4850/c$/users/username/myprojects/project/tsconfig.json: *new* + {"pollingInterval":2000} FsWatches:: //vda1cs4850/a/lib/lib.d.ts: *new* @@ -642,18 +642,18 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -//vda1cs4850/c$/users/username/myprojects/project/tsconfig.json: - {"pollingInterval":2000} -//vda1cs4850/c$/users/username/myprojects/project/jsconfig.json: - {"pollingInterval":2000} -//vda1cs4850/c$/users/username/myprojects/project/node_modules/@types: - {"pollingInterval":500} //vda1cs4850/c$/users/username/myprojects/node_modules/@types: {"pollingInterval":500} //vda1cs4850/c$/users/username/myprojects/project/bower_components: *new* {"pollingInterval":500} +//vda1cs4850/c$/users/username/myprojects/project/jsconfig.json: + {"pollingInterval":2000} //vda1cs4850/c$/users/username/myprojects/project/node_modules: *new* {"pollingInterval":500} +//vda1cs4850/c$/users/username/myprojects/project/node_modules/@types: + {"pollingInterval":500} +//vda1cs4850/c$/users/username/myprojects/project/tsconfig.json: + {"pollingInterval":2000} FsWatches:: //vda1cs4850/a/lib/lib.d.ts: diff --git a/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-is-single-watcher-per-file.js b/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-is-single-watcher-per-file.js index 0ef5a7c78d3d9..ec914b4f15d34 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-is-single-watcher-per-file.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-is-single-watcher-per-file.js @@ -89,19 +89,19 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} +/user/username/projects/myproject/tsconfig.json: *new* + {"pollingInterval":500} /user/username/projects/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* +/a/lib/lib.d.ts: *new* {} /user/username/projects/myproject: *new* {} -/a/lib/lib.d.ts: *new* +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configFile.js b/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configFile.js index 61005c0edf9a5..214eae25be41d 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configFile.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configFile.js @@ -104,13 +104,13 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: -/user/username/projects/myproject/src: *new* - {} /user/username/projects/myproject/node_modules: *new* {} +/user/username/projects/myproject/src: *new* + {} diff --git a/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configuration.js b/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configuration.js index addd36f3bd519..abb9fd7e432c9 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configuration.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configuration.js @@ -133,10 +133,10 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: *new* - {} /a/lib/lib.d.ts: *new* {} +/user/username/projects/myproject/tsconfig.json: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/src: *new* diff --git a/tests/baselines/reference/tsserver/watchEnvironment/with-fallbackPolling-option-as-host-configuration.js b/tests/baselines/reference/tsserver/watchEnvironment/with-fallbackPolling-option-as-host-configuration.js index ef30f8b6f3908..396bc16815a47 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/with-fallbackPolling-option-as-host-configuration.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/with-fallbackPolling-option-as-host-configuration.js @@ -110,11 +110,11 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/b/tsconfig.json: *new* - {"pollingInterval":2000} /a/b: *new* {"pollingInterval":500} /a/b/commonfile2.ts: *new* {"pollingInterval":500} +/a/b/tsconfig.json: *new* + {"pollingInterval":2000} /a/lib/lib.d.ts: *new* {"pollingInterval":500} diff --git a/tests/baselines/reference/tsserver/watchEnvironment/with-fallbackPolling-option-in-configFile.js b/tests/baselines/reference/tsserver/watchEnvironment/with-fallbackPolling-option-in-configFile.js index da9d05036d01f..d9b62e7f9a51e 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/with-fallbackPolling-option-in-configFile.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/with-fallbackPolling-option-in-configFile.js @@ -113,11 +113,11 @@ Info seq [hh:mm:ss:mss] response: After request PolledWatches:: -/a/b/tsconfig.json: *new* - {"pollingInterval":2000} /a/b: *new* {"pollingInterval":500} /a/b/commonfile2.ts: *new* {"pollingInterval":500} +/a/b/tsconfig.json: *new* + {"pollingInterval":2000} /a/lib/lib.d.ts: *new* {"pollingInterval":500} diff --git a/tests/baselines/reference/tsserver/watchEnvironment/with-watchDirectory-option-as-host-configuration.js b/tests/baselines/reference/tsserver/watchEnvironment/with-watchDirectory-option-as-host-configuration.js index 57ef22025c05a..61128b6e037df 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/with-watchDirectory-option-as-host-configuration.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/with-watchDirectory-option-as-host-configuration.js @@ -110,11 +110,11 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b: *new* {} /a/b/commonfile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tsserver/watchEnvironment/with-watchDirectory-option-in-configFile.js b/tests/baselines/reference/tsserver/watchEnvironment/with-watchDirectory-option-in-configFile.js index e59d8ce0bbc06..7acaf68d7a57a 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/with-watchDirectory-option-in-configFile.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/with-watchDirectory-option-in-configFile.js @@ -87,11 +87,11 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b: *new* {} /a/b/commonfile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tsserver/watchEnvironment/with-watchFile-option-as-host-configuration.js b/tests/baselines/reference/tsserver/watchEnvironment/with-watchFile-option-as-host-configuration.js index 7ff1378b7447b..b108d5ce0c6c3 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/with-watchFile-option-as-host-configuration.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/with-watchFile-option-as-host-configuration.js @@ -110,10 +110,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/commonfile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {} diff --git a/tests/baselines/reference/tsserver/watchEnvironment/with-watchFile-option-in-configFile.js b/tests/baselines/reference/tsserver/watchEnvironment/with-watchFile-option-in-configFile.js index 4be3ad447e7bf..3396f30eee016 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/with-watchFile-option-in-configFile.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/with-watchFile-option-in-configFile.js @@ -87,10 +87,10 @@ Info seq [hh:mm:ss:mss] response: After request FsWatches:: -/a/b/tsconfig.json: *new* - {} /a/b/commonfile2.ts: *new* {} +/a/b/tsconfig.json: *new* + {} /a/lib/lib.d.ts: *new* {}