From 88e574bc75a26301fc79e88dd2aeb088a7ee0db4 Mon Sep 17 00:00:00 2001 From: Sheetal Nandi Date: Mon, 15 Aug 2022 13:56:47 -0700 Subject: [PATCH 1/8] Remove unnecessary parameter --- src/harness/virtualFileSystemWithWatch.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/harness/virtualFileSystemWithWatch.ts b/src/harness/virtualFileSystemWithWatch.ts index 80aa7f98eb412..7a8619002b28d 100644 --- a/src/harness/virtualFileSystemWithWatch.ts +++ b/src/harness/virtualFileSystemWithWatch.ts @@ -498,7 +498,7 @@ interface Array { length: number; [n: number]: T; }` this.fs.get(getDirectoryPath(currentEntry.path))!.modifiedTime = this.now(); if (options && options.invokeDirectoryWatcherInsteadOfFileChanged) { const directoryFullPath = getDirectoryPath(currentEntry.fullPath); - this.invokeFileWatcher(directoryFullPath, FileWatcherEventKind.Changed, currentEntry.modifiedTime, /*useFileNameInCallback*/ true); + this.invokeFileWatcher(directoryFullPath, FileWatcherEventKind.Changed, currentEntry.modifiedTime); this.invokeFsWatchesCallbacks(directoryFullPath, "rename", currentEntry.modifiedTime, currentEntry.fullPath, options.useTildeAsSuffixInRenameEventFileName); this.invokeRecursiveFsWatches(directoryFullPath, "rename", currentEntry.modifiedTime, currentEntry.fullPath, options.useTildeAsSuffixInRenameEventFileName); } @@ -705,8 +705,8 @@ interface Array { length: number; [n: number]: T; }` return result; } - invokeFileWatcher(fileFullPath: string, eventKind: FileWatcherEventKind, modifiedTime?: Date, useFileNameInCallback?: boolean) { - invokeWatcherCallbacks(this.watchedFiles.get(this.toPath(fileFullPath)), ({ cb, fileName }) => cb(useFileNameInCallback ? fileName : fileFullPath, eventKind, modifiedTime)); + invokeFileWatcher(fileFullPath: string, eventKind: FileWatcherEventKind, modifiedTime: Date | undefined) { + invokeWatcherCallbacks(this.watchedFiles.get(this.toPath(fileFullPath)), ({ cb }) => cb(fileFullPath, eventKind, modifiedTime)); } private fsWatchCallback(map: MultiMap, fullPath: string, eventName: "rename" | "change", modifiedTime: Date | undefined, entryFullPath: string | undefined, useTildeSuffix: boolean | undefined) { From 266fbc5aedef98c445e29cb774e177b1f6d03411 Mon Sep 17 00:00:00 2001 From: Sheetal Nandi Date: Mon, 15 Aug 2022 14:08:57 -0700 Subject: [PATCH 2/8] Dont store name unnecessarily in the watchers --- src/harness/virtualFileSystemWithWatch.ts | 22 +- .../reports-syntax-errors-in-config-file.js | 30 +- .../demo/updates-with-bad-reference.js | 56 +- .../demo/updates-with-circular-reference.js | 52 +- ...for-changes-to-package-json-main-fields.js | 54 +- ...t-correctly-with-cts-and-mts-extensions.js | 130 +- ...se-different-module-resolution-settings.js | 32 +- ...n-no-files-are-emitted-with-incremental.js | 24 +- ...when-watching-when-no-files-are-emitted.js | 24 +- ...mit-any-files-on-error-with-incremental.js | 70 +- .../does-not-emit-any-files-on-error.js | 70 +- .../creates-solution-in-watch-mode.js | 18 +- .../incremental-updates-in-verbose-mode.js | 54 +- .../when-file-with-no-error-changes.js | 24 +- ...ing-errors-only-changed-file-is-emitted.js | 24 +- .../when-file-with-no-error-changes.js | 16 +- ...ixing-error-files-all-files-are-emitted.js | 16 +- .../when-preserveWatchOutput-is-not-used.js | 54 +- ...veWatchOutput-is-passed-on-command-line.js | 54 +- ...e-of-program-emit-with-outDir-specified.js | 36 +- ...r-recompilation-because-of-program-emit.js | 36 +- .../programUpdates/tsbuildinfo-has-error.js | 6 +- ...-references-watches-only-those-projects.js | 14 +- ...tches-config-files-that-are-not-present.js | 50 +- ...e-down-stream-project-and-then-fixes-it.js | 36 +- ...ncing-project-even-for-non-local-change.js | 60 +- ...le-is-added,-and-its-subsequent-updates.js | 98 +- ...hanges-and-reports-found-errors-message.js | 126 +- ...not-start-build-of-referencing-projects.js | 36 +- ...le-is-added,-and-its-subsequent-updates.js | 98 +- ...hanges-and-reports-found-errors-message.js | 126 +- ...not-start-build-of-referencing-projects.js | 36 +- ...project-with-extended-config-is-removed.js | 26 +- ...hen-noUnusedParameters-changes-to-false.js | 12 +- .../works-with-extended-source-files.js | 98 +- ...hen-there-are-23-projects-in-a-solution.js | 3080 ++++++++--------- ...when-there-are-3-projects-in-a-solution.js | 120 +- ...when-there-are-5-projects-in-a-solution.js | 192 +- ...when-there-are-8-projects-in-a-solution.js | 600 ++-- .../publicApi/with-custom-transformers.js | 28 +- .../reexport/Reports-errors-correctly.js | 54 +- ...e-projects-with-single-watcher-per-file.js | 104 +- .../same-file-in-multiple-projects.js | 104 +- .../createWatchOfConfigFile.js | 16 +- ...Result-on-WatchCompilerHostOfConfigFile.js | 16 +- .../consoleClearing/with---diagnostics.js | 8 +- .../with---extendedDiagnostics.js | 8 +- .../with---preserveWatchOutput.js | 8 +- ...---diagnostics-or---extendedDiagnostics.js | 8 +- ...ms-correctly-in-incremental-compilation.js | 16 +- ...s-deleted-and-created-as-part-of-change.js | 20 +- ...ndles-new-lines-carriageReturn-lineFeed.js | 8 +- .../handles-new-lines-lineFeed.js | 8 +- .../should-emit-specified-file.js | 42 +- ...elf-if-'--isolatedModules'-is-specified.js | 36 +- ...-if-'--out'-or-'--outFile'-is-specified.js | 36 +- ...should-be-up-to-date-with-deleted-files.js | 34 +- ...-be-up-to-date-with-newly-created-files.js | 38 +- ...-to-date-with-the-reference-map-changes.js | 108 +- ...les-referencing-it-if-its-shape-changed.js | 54 +- ...should-detect-changes-in-non-root-files.js | 30 +- .../should-detect-non-existing-code-file.js | 36 +- .../should-detect-removed-code-file.js | 24 +- ...ll-files-if-a-global-file-changed-shape.js | 36 +- ...ould-return-cascaded-affected-file-list.js | 80 +- ...fine-for-files-with-circular-references.js | 24 +- .../config-does-not-have-out-or-outFile.js | 36 +- .../config-has-out.js | 36 +- .../config-has-outFile.js | 36 +- ...ltiple-declaration-files-in-the-program.js | 14 +- ...ltiple-declaration-files-in-the-program.js | 14 +- ...-recursive-directory-watcher-is-invoked.js | 24 +- ...rrors-for-.d.ts-change-with-incremental.js | 64 +- .../errors-for-.d.ts-change.js | 64 +- .../errors-for-.ts-change-with-incremental.js | 56 +- .../errors-for-.ts-change.js | 56 +- ...el-import-that-changes-with-incremental.js | 72 +- ...g-a-deep-multilevel-import-that-changes.js | 72 +- .../export-with-incremental.js | 72 +- .../no-circular-import/export.js | 72 +- .../exports-with-incremental.js | 80 +- .../yes-circular-import/exports.js | 80 +- .../with-noEmitOnError-with-incremental.js | 98 +- .../with-noEmitOnError.js | 98 +- ...rrors-for-.d.ts-change-with-incremental.js | 64 +- .../errors-for-.d.ts-change.js | 64 +- .../errors-for-.ts-change-with-incremental.js | 56 +- .../errors-for-.ts-change.js | 56 +- ...el-import-that-changes-with-incremental.js | 72 +- ...g-a-deep-multilevel-import-that-changes.js | 72 +- .../export-with-incremental.js | 72 +- .../no-circular-import/export.js | 72 +- .../exports-with-incremental.js | 80 +- .../yes-circular-import/exports.js | 80 +- .../with-noEmitOnError-with-incremental.js | 98 +- .../with-noEmitOnError.js | 98 +- ...rrors-for-.d.ts-change-with-incremental.js | 64 +- .../errors-for-.d.ts-change.js | 64 +- .../errors-for-.ts-change-with-incremental.js | 56 +- .../errors-for-.ts-change.js | 56 +- ...el-import-that-changes-with-incremental.js | 72 +- ...g-a-deep-multilevel-import-that-changes.js | 72 +- .../export-with-incremental.js | 72 +- .../no-circular-import/export.js | 72 +- .../exports-with-incremental.js | 80 +- .../yes-circular-import/exports.js | 80 +- .../with-noEmitOnError-with-incremental.js | 98 +- .../default/with-noEmitOnError.js | 98 +- ...rrors-for-.d.ts-change-with-incremental.js | 64 +- .../errors-for-.d.ts-change.js | 64 +- .../errors-for-.ts-change-with-incremental.js | 56 +- .../errors-for-.ts-change.js | 56 +- ...el-import-that-changes-with-incremental.js | 72 +- ...g-a-deep-multilevel-import-that-changes.js | 72 +- .../export-with-incremental.js | 72 +- .../no-circular-import/export.js | 72 +- .../exports-with-incremental.js | 80 +- .../yes-circular-import/exports.js | 80 +- .../with-noEmitOnError-with-incremental.js | 98 +- .../defaultAndD/with-noEmitOnError.js | 98 +- ...rrors-for-.d.ts-change-with-incremental.js | 64 +- .../errors-for-.d.ts-change.js | 64 +- .../errors-for-.ts-change-with-incremental.js | 56 +- .../errors-for-.ts-change.js | 56 +- ...el-import-that-changes-with-incremental.js | 72 +- ...g-a-deep-multilevel-import-that-changes.js | 72 +- .../export-with-incremental.js | 72 +- .../no-circular-import/export.js | 72 +- .../exports-with-incremental.js | 80 +- .../yes-circular-import/exports.js | 80 +- .../with-noEmitOnError-with-incremental.js | 98 +- .../isolatedModules/with-noEmitOnError.js | 98 +- ...rrors-for-.d.ts-change-with-incremental.js | 64 +- .../errors-for-.d.ts-change.js | 64 +- .../errors-for-.ts-change-with-incremental.js | 56 +- .../errors-for-.ts-change.js | 56 +- ...el-import-that-changes-with-incremental.js | 72 +- ...g-a-deep-multilevel-import-that-changes.js | 72 +- .../export-with-incremental.js | 72 +- .../no-circular-import/export.js | 72 +- .../exports-with-incremental.js | 80 +- .../yes-circular-import/exports.js | 80 +- .../with-noEmitOnError-with-incremental.js | 98 +- .../isolatedModulesAndD/with-noEmitOnError.js | 98 +- .../jsxImportSource-option-changed.js | 14 +- ...n-Windows-style-drive-root-is-lowercase.js | 24 +- ...n-Windows-style-drive-root-is-uppercase.js | 24 +- ...ry-symlink-target-and-import-match-disk.js | 28 +- ...le-symlink-target-and-import-match-disk.js | 28 +- ...nging-module-name-with-different-casing.js | 24 +- ...target-matches-disk-but-import-does-not.js | 28 +- ...target-matches-disk-but-import-does-not.js | 28 +- ...link-target,-and-disk-are-all-different.js | 32 +- ...link-target,-and-disk-are-all-different.js | 36 +- ...link-target-agree-but-do-not-match-disk.js | 28 +- ...link-target-agree-but-do-not-match-disk.js | 28 +- ...k-but-directory-symlink-target-does-not.js | 28 +- ...s-disk-but-file-symlink-target-does-not.js | 28 +- ...ative-information-file-location-changes.js | 28 +- ...hen-renaming-file-with-different-casing.js | 24 +- .../editing-module-augmentation-watch.js | 36 +- ...portHelpers-backing-types-removed-watch.js | 28 +- ...remental-with-circular-references-watch.js | 32 +- ...xImportSource-backing-types-added-watch.js | 28 +- ...mportSource-backing-types-removed-watch.js | 28 +- .../jsxImportSource-option-changed-watch.js | 32 +- .../own-file-emit-with-errors-watch.js | 24 +- .../own-file-emit-without-errors-watch.js | 24 +- .../module-compilation/with---out-watch.js | 12 +- .../own-file-emit-with-errors-watch.js | 24 +- ...-parameters-that-are-not-relative-watch.js | 24 +- .../without-commandline-options-watch.js | 24 +- .../incremental/tsbuildinfo-has-error.js | 10 +- ...lobal-declaration-file-is-deleted-watch.js | 22 +- .../tscWatch/incremental/with---out-watch.js | 12 +- .../diagnostics-from-cache.js | 12 +- ...en-package-json-with-type-module-exists.js | 120 +- .../package-json-file-is-edited.js | 120 +- ...for-changes-to-package-json-main-fields.js | 80 +- .../esm-mode-file-is-edited.js | 24 +- ...nerated-when-the-config-file-has-errors.js | 10 +- ...configFile-contents-when-options-change.js | 20 +- ...rs-document-is-not-contained-in-project.js | 10 +- ...rts-errors-when-the-config-file-changes.js | 30 +- ...nostics-when-'--noUnusedLabels'-changes.js | 24 +- ...-a-configured-program-without-file-list.js | 22 +- ...hould-remove-the-module-not-found-error.js | 12 +- ...has-changed-(new-file-in-list-of-files).js | 18 +- ...ot-files-has-changed-(new-file-on-disk).js | 22 +- ...-root-files-has-changed-through-include.js | 26 +- ...config-file-name-with-difference-casing.js | 8 +- ...-when-set-of-root-files-was-not-changed.js | 20 +- .../programUpdates/change-module-to-none.js | 20 +- ...iles-are-reflected-in-project-structure.js | 14 +- .../config-file-includes-the-file.js | 12 +- .../programUpdates/config-file-is-deleted.js | 24 +- ...s-changes-in-lib-section-of-config-file.js | 22 +- ...keys-differ-only-in-directory-seperator.js | 40 +- ...te-configured-project-without-file-list.js | 12 +- .../create-watch-without-config-file.js | 8 +- ...eleted-files-affect-project-structure-2.js | 16 +- .../deleted-files-affect-project-structure.js | 14 +- .../extended-source-files-are-watched.js | 62 +- .../file-in-files-is-deleted.js | 20 +- ...iles-explicitly-excluded-in-config-file.js | 12 +- .../handle-recreated-files-correctly.js | 46 +- ...se-they-were-added-with-tripleSlashRefs.js | 12 +- ...esnt-have-errors,-they-are-not-reported.js | 10 +- ...ndle-@types-if-input-file-list-is-empty.js | 4 +- ...e-tolerated-without-crashing-the-server.js | 10 +- ...tore-the-states-for-configured-projects.js | 40 +- ...estore-the-states-for-inferred-projects.js | 18 +- ...rors-correctly-with-file-not-in-rootDir.js | 24 +- ...s-errors-correctly-with-isolatedModules.js | 24 +- ...non-existing-directories-in-config-file.js | 12 +- ...ting-files-specified-in-the-config-file.js | 10 +- .../declarationDir-is-specified.js | 60 +- ...-outDir-and-declarationDir-is-specified.js | 60 +- .../when-outDir-is-specified.js | 60 +- .../with-outFile.js | 60 +- ...e-is-specified-with-declaration-enabled.js | 60 +- .../without-outDir-or-outFile-is-specified.js | 60 +- ...odule-resolution-changes-in-config-file.js | 24 +- .../should-reflect-change-in-config-file.js | 28 +- ...should-support-files-without-extensions.js | 4 +- ...errors-and-still-try-to-build-a-project.js | 12 +- ...when-file-changes-from-global-to-module.js | 8 +- ...programs-are-not-affected-by-each-other.js | 20 +- ...-from-config-file-path-if-config-exists.js | 12 +- ...tes-diagnostics-and-emit-for-decorators.js | 30 +- ...it-when-useDefineForClassFields-changes.js | 16 +- .../updates-emit-on-jsx-option-change.js | 20 +- ...mit-when-importsNotUsedAsValues-changes.js | 48 +- ...on-emit-is-disabled-in-compiler-options.js | 60 +- .../with-default-options.js | 18 +- .../with-skipDefaultLibCheck.js | 18 +- .../with-skipLibCheck.js | 18 +- .../with-default-options.js | 18 +- .../with-skipDefaultLibCheck.js | 18 +- .../with-skipLibCheck.js | 18 +- ...when-ambient-modules-of-program-changes.js | 32 +- ...orceConsistentCasingInFileNames-changes.js | 20 +- ...s-errors-when-noErrorTruncation-changes.js | 20 +- ...es-errors-when-strictNullChecks-changes.js | 40 +- ...solution-when-resolveJsonModule-changes.js | 30 +- ...and-new-file-is-added-as-part-of-change.js | 20 +- .../when-creating-extensionless-file.js | 20 +- ...n-creating-new-file-in-symlinked-folder.js | 30 +- ...file-is-added-to-the-referenced-project.js | 130 +- ...ibCheck-and-skipDefaultLibCheck-changes.js | 84 +- ...-file-is-changed-but-its-content-havent.js | 20 +- .../on-sample-project.js | 96 +- ...-different-folders-with-no-files-clause.js | 324 +- ...nsitive-references-in-different-folders.js | 270 +- .../on-transitive-references.js | 196 +- ...roject-uses-different-module-resolution.js | 20 +- .../tscWatch/resolutionCache/caching-works.js | 34 +- .../watch-with-configFile.js | 28 +- .../watch-without-configFile.js | 16 +- .../loads-missing-files-from-disk.js | 18 +- ...module-goes-missing-and-then-comes-back.js | 26 +- ...are-global-and-installed-at-later-point.js | 38 +- .../with-modules-linked-to-sibling-folder.js | 22 +- ...cluded-file-with-ambient-module-changes.js | 20 +- ...-no-notification-from-fs-for-index-file.js | 82 +- ...le-resolution-changes-to-ambient-module.js | 18 +- ...der-that-already-contains-@types-folder.js | 18 +- ...rogram-with-files-from-external-library.js | 40 +- ...es-field-when-solution-is-already-built.js | 32 +- ...Symlinks-when-solution-is-already-built.js | 32 +- ...n-has-types-field-with-preserveSymlinks.js | 32 +- ...-package-when-solution-is-already-built.js | 32 +- ...Symlinks-when-solution-is-already-built.js | 32 +- ...th-scoped-package-with-preserveSymlinks.js | 32 +- ...son-has-types-field-with-scoped-package.js | 32 +- .../when-packageJson-has-types-field.js | 32 +- ...ubFolder-when-solution-is-already-built.js | 32 +- ...Symlinks-when-solution-is-already-built.js | 32 +- ...le-from-subFolder-with-preserveSymlinks.js | 32 +- ...-package-when-solution-is-already-built.js | 32 +- ...Symlinks-when-solution-is-already-built.js | 32 +- ...th-scoped-package-with-preserveSymlinks.js | 32 +- ...file-from-subFolder-with-scoped-package.js | 32 +- .../when-referencing-file-from-subFolder.js | 32 +- ...-project-when-solution-is-already-built.js | 26 +- .../with-simple-project.js | 26 +- .../extraFileExtensions-are-supported.js | 26 +- ...noEmit-with-composite-with-emit-builder.js | 60 +- ...it-with-composite-with-semantic-builder.js | 60 +- ...nError-with-composite-with-emit-builder.js | 36 +- ...or-with-composite-with-semantic-builder.js | 36 +- .../watchApi/semantic-builder-emitOnlyDts.js | 24 +- ...createSemanticDiagnosticsBuilderProgram.js | 24 +- ...n-works-when-returned-without-extension.js | 10 +- ...assed-down-to-the-watch-status-reporter.js | 8 +- ...ing-useSourceOfProjectReferenceRedirect.js | 130 +- ...-host-implementing-getParsedCommandLine.js | 86 +- ...-timesouts-on-host-program-gets-updated.js | 22 +- ...inode-when-rename-event-ends-with-tilde.js | 36 +- ...e-occurs-when-file-is-still-on-the-disk.js | 30 +- ...when-using-file-watching-thats-on-inode.js | 36 +- ...e-occurs-when-file-is-still-on-the-disk.js | 30 +- ...polling-when-renaming-file-in-subfolder.js | 12 +- ...rectory-when-renaming-file-in-subfolder.js | 24 +- ...tchFile-when-renaming-file-in-subfolder.js | 24 +- ...ymlinks-to-folders-in-recursive-folders.js | 24 +- ...hronous-watch-directory-renaming-a-file.js | 64 +- ...ory-with-outDir-and-declaration-enabled.js | 126 +- .../with-non-synchronous-watch-directory.js | 156 +- ...lt-as-fixed-chunk-size-watch-file-works.js | 12 +- .../using-fixed-chunk-size-polling.js | 20 +- ...eDirectories-option-extendedDiagnostics.js | 28 +- ...-directory-watching-extendedDiagnostics.js | 60 +- ...ption-with-recursive-directory-watching.js | 60 +- .../with-excludeDirectories-option.js | 28 +- ...excludeFiles-option-extendedDiagnostics.js | 28 +- .../watchOptions/with-excludeFiles-option.js | 28 +- .../with-fallbackPolling-option.js | 12 +- .../with-watchDirectory-option.js | 12 +- ...th-watchFile-as-watch-options-to-extend.js | 12 +- .../watchOptions/with-watchFile-option.js | 12 +- ...ect-watch-options-in-host-configuration.js | 4 +- .../external-project-watch-options.js | 6 +- .../watchEnvironment/files-at-root.js | 10 +- .../files-at-windows-style-root.js | 10 +- .../watchEnvironment/files-not-at-root.js | 12 +- .../files-not-at-windows-style-root.js | 12 +- ...ect-watch-options-in-host-configuration.js | 12 +- .../inferred-project-watch-options.js | 14 +- .../project-with-ascii-file-names-with-i.js | 10 +- .../project-with-ascii-file-names.js | 10 +- .../project-with-unicode-file-names.js | 10 +- ...files-starting-with-dot-in-node_modules.js | 98 +- ...polling-when-file-is-added-to-subfolder.js | 14 +- ...rectory-when-file-is-added-to-subfolder.js | 26 +- ...tchFile-when-file-is-added-to-subfolder.js | 26 +- ...watching-files-with-network-style-paths.js | 40 +- ...e-can-create-multiple-watchers-per-file.js | 14 +- ...en-watchFile-is-single-watcher-per-file.js | 10 +- ...excludeDirectories-option-in-configFile.js | 10 +- ...ludeDirectories-option-in-configuration.js | 8 +- ...ackPolling-option-as-host-configuration.js | 10 +- ...th-fallbackPolling-option-in-configFile.js | 10 +- ...hDirectory-option-as-host-configuration.js | 10 +- ...ith-watchDirectory-option-in-configFile.js | 10 +- ...-watchFile-option-as-host-configuration.js | 10 +- .../with-watchFile-option-in-configFile.js | 10 +- 347 files changed, 9420 insertions(+), 9430 deletions(-) diff --git a/src/harness/virtualFileSystemWithWatch.ts b/src/harness/virtualFileSystemWithWatch.ts index 7a8619002b28d..451cfd9e49b38 100644 --- a/src/harness/virtualFileSystemWithWatch.ts +++ b/src/harness/virtualFileSystemWithWatch.ts @@ -283,13 +283,11 @@ interface Array { length: number; [n: number]: T; }` export interface TestFileWatcher { cb: FileWatcherCallback; - fileName: string; pollingInterval: PollingInterval; } export interface TestFsWatcher { cb: FsWatchCallback; - directoryName: string; inode: number | undefined; } @@ -679,7 +677,7 @@ interface Array { length: number; [n: number]: T; }` return createWatcher( this.watchedFiles, this.toFullPath(fileName), - { fileName, cb, pollingInterval } + { cb, pollingInterval } ); } @@ -696,7 +694,6 @@ interface Array { length: number; [n: number]: T; }` recursive ? this.fsWatchesRecursive : this.fsWatches, path, { - directoryName: fileOrDirectory, cb, inode: this.inodes?.get(path) } @@ -1050,11 +1047,11 @@ interface Array { length: number; [n: number]: T; }` } serializeWatches(baseline: string[] = []) { - serializeMultiMap(baseline, "WatchedFiles", this.watchedFiles, ({ fileName, pollingInterval }) => ({ fileName, pollingInterval })); + serializeMultiMap(baseline, "WatchedFiles", this.watchedFiles); baseline.push(""); - serializeMultiMap(baseline, "FsWatches", this.fsWatches, serializeTestFsWatcher); + serializeMultiMap(baseline, "FsWatches", this.fsWatches); baseline.push(""); - serializeMultiMap(baseline, "FsWatchesRecursive", this.fsWatchesRecursive, serializeTestFsWatcher); + serializeMultiMap(baseline, "FsWatchesRecursive", this.fsWatchesRecursive); baseline.push(""); return baseline; } @@ -1158,19 +1155,12 @@ interface Array { length: number; [n: number]: T; }` } } - function serializeTestFsWatcher({ directoryName, inode }: TestFsWatcher) { - return { - directoryName, - inode, - }; - } - - function serializeMultiMap(baseline: string[], caption: string, multiMap: MultiMap, valueMapper: (value: T) => U) { + function serializeMultiMap(baseline: string[], caption: string, multiMap: MultiMap) { baseline.push(`${caption}::`); multiMap.forEach((values, key) => { baseline.push(`${key}:`); for (const value of values) { - baseline.push(` ${JSON.stringify(valueMapper(value))}`); + baseline.push(` ${JSON.stringify(value)}`); } }); } 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 f4c79b5eb8f28..56b4dbe20727c 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,11 +58,11 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -152,11 +152,11 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -199,11 +199,11 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -244,11 +244,11 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -292,11 +292,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 cde995401e228..e7de269fe7eaa 100644 --- a/tests/baselines/reference/tsbuildWatch/demo/updates-with-bad-reference.js +++ b/tests/baselines/reference/tsbuildWatch/demo/updates-with-bad-reference.js @@ -247,37 +247,37 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/demo/core/tsconfig.json: - {"fileName":"/user/username/projects/demo/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/tsconfig-base.json: - {"fileName":"/user/username/projects/demo/tsconfig-base.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/core/utilities.ts: - {"fileName":"/user/username/projects/demo/core/utilities.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/package.json: - {"fileName":"/user/username/projects/demo/animals/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/tsconfig.json: - {"fileName":"/user/username/projects/demo/animals/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/animal.ts: - {"fileName":"/user/username/projects/demo/animals/animal.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/dog.ts: - {"fileName":"/user/username/projects/demo/animals/dog.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/index.ts: - {"fileName":"/user/username/projects/demo/animals/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/zoo/tsconfig.json: - {"fileName":"/user/username/projects/demo/zoo/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/zoo/zoo.ts: - {"fileName":"/user/username/projects/demo/zoo/zoo.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/tsconfig.json: - {"fileName":"/user/username/projects/demo/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/demo/core: - {"directoryName":"/user/username/projects/demo/core"} + {} /user/username/projects/demo/animals: - {"directoryName":"/user/username/projects/demo/animals"} + {} /user/username/projects/demo/zoo: - {"directoryName":"/user/username/projects/demo/zoo"} + {} exitCode:: ExitStatus.undefined @@ -523,37 +523,37 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/demo/core/tsconfig.json: - {"fileName":"/user/username/projects/demo/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/tsconfig-base.json: - {"fileName":"/user/username/projects/demo/tsconfig-base.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/core/utilities.ts: - {"fileName":"/user/username/projects/demo/core/utilities.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/package.json: - {"fileName":"/user/username/projects/demo/animals/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/tsconfig.json: - {"fileName":"/user/username/projects/demo/animals/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/animal.ts: - {"fileName":"/user/username/projects/demo/animals/animal.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/dog.ts: - {"fileName":"/user/username/projects/demo/animals/dog.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/index.ts: - {"fileName":"/user/username/projects/demo/animals/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/zoo/tsconfig.json: - {"fileName":"/user/username/projects/demo/zoo/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/zoo/zoo.ts: - {"fileName":"/user/username/projects/demo/zoo/zoo.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/tsconfig.json: - {"fileName":"/user/username/projects/demo/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/demo/core: - {"directoryName":"/user/username/projects/demo/core"} + {} /user/username/projects/demo/animals: - {"directoryName":"/user/username/projects/demo/animals"} + {} /user/username/projects/demo/zoo: - {"directoryName":"/user/username/projects/demo/zoo"} + {} exitCode:: ExitStatus.undefined 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 d875c49116676..d7681766d8320 100644 --- a/tests/baselines/reference/tsbuildWatch/demo/updates-with-circular-reference.js +++ b/tests/baselines/reference/tsbuildWatch/demo/updates-with-circular-reference.js @@ -169,35 +169,35 @@ Output:: WatchedFiles:: /user/username/projects/demo/animals/tsconfig.json: - {"fileName":"/user/username/projects/demo/animals/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/tsconfig-base.json: - {"fileName":"/user/username/projects/demo/tsconfig-base.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/animal.ts: - {"fileName":"/user/username/projects/demo/animals/animal.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/dog.ts: - {"fileName":"/user/username/projects/demo/animals/dog.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/index.ts: - {"fileName":"/user/username/projects/demo/animals/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/zoo/tsconfig.json: - {"fileName":"/user/username/projects/demo/zoo/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/zoo/zoo.ts: - {"fileName":"/user/username/projects/demo/zoo/zoo.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/core/tsconfig.json: - {"fileName":"/user/username/projects/demo/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/core/utilities.ts: - {"fileName":"/user/username/projects/demo/core/utilities.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/tsconfig.json: - {"fileName":"/user/username/projects/demo/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/demo/animals: - {"directoryName":"/user/username/projects/demo/animals"} + {} /user/username/projects/demo/zoo: - {"directoryName":"/user/username/projects/demo/zoo"} + {} /user/username/projects/demo/core: - {"directoryName":"/user/username/projects/demo/core"} + {} exitCode:: ExitStatus.undefined @@ -300,35 +300,35 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/demo/animals/tsconfig.json: - {"fileName":"/user/username/projects/demo/animals/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/tsconfig-base.json: - {"fileName":"/user/username/projects/demo/tsconfig-base.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/animal.ts: - {"fileName":"/user/username/projects/demo/animals/animal.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/dog.ts: - {"fileName":"/user/username/projects/demo/animals/dog.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/index.ts: - {"fileName":"/user/username/projects/demo/animals/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/zoo/tsconfig.json: - {"fileName":"/user/username/projects/demo/zoo/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/zoo/zoo.ts: - {"fileName":"/user/username/projects/demo/zoo/zoo.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/core/tsconfig.json: - {"fileName":"/user/username/projects/demo/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/core/utilities.ts: - {"fileName":"/user/username/projects/demo/core/utilities.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/tsconfig.json: - {"fileName":"/user/username/projects/demo/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/demo/animals: - {"directoryName":"/user/username/projects/demo/animals"} + {} /user/username/projects/demo/zoo: - {"directoryName":"/user/username/projects/demo/zoo"} + {} /user/username/projects/demo/core: - {"directoryName":"/user/username/projects/demo/core"} + {} exitCode:: ExitStatus.undefined 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 b66d658f16e06..d256552fabef4 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 @@ -150,27 +150,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/const.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/const.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/other.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/other.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/package.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg2: - {"directoryName":"/user/username/projects/myproject/packages/pkg2"} + {} /user/username/projects/myproject/packages/pkg1: - {"directoryName":"/user/username/projects/myproject/packages/pkg1"} + {} exitCode:: ExitStatus.undefined @@ -338,27 +338,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/const.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/const.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/other.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/other.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/package.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg2: - {"directoryName":"/user/username/projects/myproject/packages/pkg2"} + {} /user/username/projects/myproject/packages/pkg1: - {"directoryName":"/user/username/projects/myproject/packages/pkg1"} + {} exitCode:: ExitStatus.undefined @@ -440,27 +440,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/const.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/const.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/other.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/other.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/package.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg2: - {"directoryName":"/user/username/projects/myproject/packages/pkg2"} + {} /user/username/projects/myproject/packages/pkg1: - {"directoryName":"/user/username/projects/myproject/packages/pkg1"} + {} 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 c813f2c658a30..71a6d7271f043 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 @@ -144,35 +144,35 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/const.cts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/const.cts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/package.json","pollingInterval":250} + {"pollingInterval":250} /a/lib/package.json: - {"fileName":"/a/lib/package.json","pollingInterval":250} + {"pollingInterval":250} /a/package.json: - {"fileName":"/a/package.json","pollingInterval":250} + {"pollingInterval":250} /package.json: - {"fileName":"/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg1/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/build/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/build/package.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg2: - {"directoryName":"/user/username/projects/myproject/packages/pkg2"} + {} /user/username/projects/myproject/packages/pkg1: - {"directoryName":"/user/username/projects/myproject/packages/pkg1"} + {} exitCode:: ExitStatus.undefined @@ -342,35 +342,35 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/const.cts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/const.cts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/package.json","pollingInterval":250} + {"pollingInterval":250} /a/lib/package.json: - {"fileName":"/a/lib/package.json","pollingInterval":250} + {"pollingInterval":250} /a/package.json: - {"fileName":"/a/package.json","pollingInterval":250} + {"pollingInterval":250} /package.json: - {"fileName":"/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg1/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/build/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/build/package.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg2: - {"directoryName":"/user/username/projects/myproject/packages/pkg2"} + {} /user/username/projects/myproject/packages/pkg1: - {"directoryName":"/user/username/projects/myproject/packages/pkg1"} + {} exitCode:: ExitStatus.undefined @@ -447,35 +447,35 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/const.cts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/const.cts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/package.json","pollingInterval":250} + {"pollingInterval":250} /a/lib/package.json: - {"fileName":"/a/lib/package.json","pollingInterval":250} + {"pollingInterval":250} /a/package.json: - {"fileName":"/a/package.json","pollingInterval":250} + {"pollingInterval":250} /package.json: - {"fileName":"/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg1/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/build/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/build/package.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg2: - {"directoryName":"/user/username/projects/myproject/packages/pkg2"} + {} /user/username/projects/myproject/packages/pkg1: - {"directoryName":"/user/username/projects/myproject/packages/pkg1"} + {} exitCode:: ExitStatus.undefined @@ -565,35 +565,35 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/const.cts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/const.cts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/package.json","pollingInterval":250} + {"pollingInterval":250} /a/lib/package.json: - {"fileName":"/a/lib/package.json","pollingInterval":250} + {"pollingInterval":250} /a/package.json: - {"fileName":"/a/package.json","pollingInterval":250} + {"pollingInterval":250} /package.json: - {"fileName":"/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg1/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/build/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/build/package.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg2: - {"directoryName":"/user/username/projects/myproject/packages/pkg2"} + {} /user/username/projects/myproject/packages/pkg1: - {"directoryName":"/user/username/projects/myproject/packages/pkg1"} + {} exitCode:: ExitStatus.undefined @@ -711,35 +711,35 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/const.cts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/const.cts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/package.json","pollingInterval":250} + {"pollingInterval":250} /a/lib/package.json: - {"fileName":"/a/lib/package.json","pollingInterval":250} + {"pollingInterval":250} /a/package.json: - {"fileName":"/a/package.json","pollingInterval":250} + {"pollingInterval":250} /package.json: - {"fileName":"/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg1/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/build/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/build/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/index.cts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/index.cts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg2: - {"directoryName":"/user/username/projects/myproject/packages/pkg2"} + {} /user/username/projects/myproject/packages/pkg1: - {"directoryName":"/user/username/projects/myproject/packages/pkg1"} + {} 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 95e12d17eaa71..3c3a9d2b7c01d 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,21 +109,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/project1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/project1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/project1/index.ts: - {"fileName":"/user/username/projects/myproject/project1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/project1/node_modules/file/package.json: - {"fileName":"/user/username/projects/myproject/project1/node_modules/file/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types/foo/package.json: - {"fileName":"/user/username/projects/myproject/node_modules/@types/foo/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types/bar/package.json: - {"fileName":"/user/username/projects/myproject/node_modules/@types/bar/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/project2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/project2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/project2/index.ts: - {"fileName":"/user/username/projects/myproject/project2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -307,21 +307,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/project1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/project1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/project1/index.ts: - {"fileName":"/user/username/projects/myproject/project1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/project1/node_modules/file/package.json: - {"fileName":"/user/username/projects/myproject/project1/node_modules/file/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types/foo/package.json: - {"fileName":"/user/username/projects/myproject/node_modules/@types/foo/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types/bar/package.json: - {"fileName":"/user/username/projects/myproject/node_modules/@types/bar/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/project2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/project2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/project2/index.ts: - {"fileName":"/user/username/projects/myproject/project2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 aad7d462597b7..da82497e5309c 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,17 +60,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.js: - {"fileName":"/user/username/projects/myproject/a.js","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -154,17 +154,17 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.js: - {"fileName":"/user/username/projects/myproject/a.js","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -207,17 +207,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.js: - {"fileName":"/user/username/projects/myproject/a.js","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 633383bcfb2c2..0bce0c50da9f9 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,17 +60,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.js: - {"fileName":"/user/username/projects/myproject/a.js","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -106,17 +106,17 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.js: - {"fileName":"/user/username/projects/myproject/a.js","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -159,17 +159,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.js: - {"fileName":"/user/username/projects/myproject/a.js","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 1667565e83fc3..92f2bec24a8ef 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,19 +75,19 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -182,19 +182,19 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -244,19 +244,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -379,19 +379,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -508,19 +508,19 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -562,19 +562,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -661,19 +661,19 @@ Output:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined 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 f4844fb0fb2d6..67a737c73d1dc 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,19 +75,19 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -129,19 +129,19 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -191,19 +191,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -269,19 +269,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -323,19 +323,19 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -379,19 +379,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -438,19 +438,19 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined 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 60a7a232a5a89..c62a551872e53 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,27 +176,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined 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 324010fad80c8..41485fed85b72 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,27 +193,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -534,27 +534,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -711,27 +711,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined 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 5d733a2ec2397..00f8741fbb74a 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,17 +54,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/solution/app/tsconfig.json: - {"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewithouterror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/solution/app: - {"directoryName":"/user/username/projects/solution/app"} + {} exitCode:: ExitStatus.undefined @@ -187,17 +187,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/solution/app/tsconfig.json: - {"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewithouterror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/solution/app: - {"directoryName":"/user/username/projects/solution/app"} + {} exitCode:: ExitStatus.undefined @@ -238,17 +238,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/solution/app/tsconfig.json: - {"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewithouterror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/solution/app: - {"directoryName":"/user/username/projects/solution/app"} + {} exitCode:: ExitStatus.undefined 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 62d6bf9c1de36..b9d6363657f19 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,17 +54,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/solution/app/tsconfig.json: - {"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewithouterror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/solution/app: - {"directoryName":"/user/username/projects/solution/app"} + {} exitCode:: ExitStatus.undefined @@ -187,17 +187,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/solution/app/tsconfig.json: - {"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewithouterror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/solution/app: - {"directoryName":"/user/username/projects/solution/app"} + {} exitCode:: ExitStatus.undefined @@ -222,17 +222,17 @@ Output:: WatchedFiles:: /user/username/projects/solution/app/tsconfig.json: - {"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewithouterror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/solution/app: - {"directoryName":"/user/username/projects/solution/app"} + {} exitCode:: ExitStatus.undefined 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 6692ee762eb5d..b7b53c616ee83 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,17 +59,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/solution/app/tsconfig.json: - {"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewithouterror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/solution/app: - {"directoryName":"/user/username/projects/solution/app"} + {} exitCode:: ExitStatus.undefined @@ -110,17 +110,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/solution/app/tsconfig.json: - {"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewithouterror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/solution/app: - {"directoryName":"/user/username/projects/solution/app"} + {} exitCode:: ExitStatus.undefined 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 14964662f91a5..1aa1daacb5fb0 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,17 +59,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/solution/app/tsconfig.json: - {"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewithouterror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/solution/app: - {"directoryName":"/user/username/projects/solution/app"} + {} exitCode:: ExitStatus.undefined @@ -108,17 +108,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/solution/app/tsconfig.json: - {"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/solution/app/filewithouterror.ts: - {"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/solution/app: - {"directoryName":"/user/username/projects/solution/app"} + {} exitCode:: ExitStatus.undefined 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 1b720a03ea9e8..dab9cb78e0f96 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,27 +176,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -514,27 +514,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -671,27 +671,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined 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 29a5bfa507bbf..b54d939bc32be 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,27 +175,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -512,27 +512,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -668,27 +668,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined 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 f69151ecf4290..38be688223dc2 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,17 +62,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} exitCode:: ExitStatus.undefined @@ -156,17 +156,17 @@ Output:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} exitCode:: ExitStatus.undefined @@ -207,19 +207,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/file3.ts: - {"fileName":"/user/username/projects/sample1/core/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} exitCode:: ExitStatus.undefined @@ -292,19 +292,19 @@ Output:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/file3.ts: - {"fileName":"/user/username/projects/sample1/core/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} exitCode:: ExitStatus.undefined 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 3f6856ecd8f59..8744fafb620b6 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,17 +69,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} exitCode:: ExitStatus.undefined @@ -171,17 +171,17 @@ Output:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} exitCode:: ExitStatus.undefined @@ -222,19 +222,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/file3.ts: - {"fileName":"/user/username/projects/sample1/core/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} exitCode:: ExitStatus.undefined @@ -312,19 +312,19 @@ Output:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/file3.ts: - {"fileName":"/user/username/projects/sample1/core/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/tsbuildinfo-has-error.js b/tests/baselines/reference/tsbuildWatch/programUpdates/tsbuildinfo-has-error.js index 84ee0a6cae47d..3bd3703372ded 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/tsbuildinfo-has-error.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/tsbuildinfo-has-error.js @@ -48,15 +48,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /src/project/tsconfig.json: - {"fileName":"/src/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /src/project/main.ts: - {"fileName":"/src/project/main.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /src/project: - {"directoryName":"/src/project"} + {} exitCode:: ExitStatus.undefined 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 1b66d196405d6..e312a7c5cbedb 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,23 +152,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined 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 27d6980d6c02f..fdea840b60a0f 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 @@ -99,23 +99,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} exitCode:: ExitStatus.undefined @@ -247,27 +247,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -398,27 +398,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined 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 ff041be8db76b..161df8a1c9db6 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,21 +81,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/library/tsconfig.json: - {"fileName":"/user/username/projects/sample1/Library/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/library/library.ts: - {"fileName":"/user/username/projects/sample1/Library/library.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/app/tsconfig.json: - {"fileName":"/user/username/projects/sample1/App/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/app/app.ts: - {"fileName":"/user/username/projects/sample1/App/app.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/library: - {"directoryName":"/user/username/projects/sample1/library"} + {} /user/username/projects/sample1/app: - {"directoryName":"/user/username/projects/sample1/app"} + {} exitCode:: ExitStatus.undefined @@ -230,21 +230,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/library/tsconfig.json: - {"fileName":"/user/username/projects/sample1/Library/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/library/library.ts: - {"fileName":"/user/username/projects/sample1/Library/library.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/app/tsconfig.json: - {"fileName":"/user/username/projects/sample1/App/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/app/app.ts: - {"fileName":"/user/username/projects/sample1/App/app.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/library: - {"directoryName":"/user/username/projects/sample1/library"} + {} /user/username/projects/sample1/app: - {"directoryName":"/user/username/projects/sample1/app"} + {} exitCode:: ExitStatus.undefined @@ -362,21 +362,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/library/tsconfig.json: - {"fileName":"/user/username/projects/sample1/Library/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/library/library.ts: - {"fileName":"/user/username/projects/sample1/Library/library.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/app/tsconfig.json: - {"fileName":"/user/username/projects/sample1/App/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/app/app.ts: - {"fileName":"/user/username/projects/sample1/App/app.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/library: - {"directoryName":"/user/username/projects/sample1/library"} + {} /user/username/projects/sample1/app: - {"directoryName":"/user/username/projects/sample1/app"} + {} 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 98cd6ac6bb7c0..6805175ad1510 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,21 +59,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -293,21 +293,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -412,21 +412,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -577,21 +577,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -679,21 +679,21 @@ Output:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined 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 af000648fbc18..49983ed054c29 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,27 +150,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -466,29 +466,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/newfile.ts: - {"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -591,29 +591,29 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/newfile.ts: - {"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -651,29 +651,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/newfile.ts: - {"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -784,29 +784,29 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/newfile.ts: - {"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined 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 71fa632c593a5..e5030825b9aba 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,27 +150,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -469,27 +469,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -608,27 +608,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -819,27 +819,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -950,27 +950,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -1163,27 +1163,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -1310,27 +1310,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined 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 456a0f87c7979..0c67e7240fb6d 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,27 +150,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -471,27 +471,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined 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 a11ce02c5269e..9c4b6dd22ccb1 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,27 +176,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -500,29 +500,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/newfile.ts: - {"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -630,29 +630,29 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/newfile.ts: - {"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -690,29 +690,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/newfile.ts: - {"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -828,29 +828,29 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/newfile.ts: - {"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined 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 fdfac9145d0a5..b81a69d435821 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,27 +176,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -503,27 +503,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -647,27 +647,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -858,27 +858,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -994,27 +994,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -1207,27 +1207,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -1359,27 +1359,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined 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 6526a023bbd11..7af4dd5f8543e 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,27 +176,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -505,27 +505,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: - {"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.ts: - {"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined 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 a2f8ce5164283..24589321852f9 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,21 +94,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/project1.tsconfig.json: - {"fileName":"/a/b/project1.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/alpha.tsconfig.json: - {"fileName":"/a/b/alpha.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/project2.tsconfig.json: - {"fileName":"/a/b/project2.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/bravo.tsconfig.json: - {"fileName":"/a/b/bravo.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/other.ts: - {"fileName":"/a/b/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -244,15 +244,15 @@ Output:: WatchedFiles:: /a/b/project1.tsconfig.json: - {"fileName":"/a/b/project1.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/alpha.tsconfig.json: - {"fileName":"/a/b/alpha.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 08e7879722d6b..6ead4a4f6a8ed 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,15 +50,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/index.ts: - {"fileName":"/user/username/projects/myproject/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -93,15 +93,15 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/index.ts: - {"fileName":"/user/username/projects/myproject/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 84c9d4532a8be..f0efa2e086890 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 @@ -90,19 +90,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/project1.tsconfig.json: - {"fileName":"/a/b/project1.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/alpha.tsconfig.json: - {"fileName":"/a/b/alpha.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/project2.tsconfig.json: - {"fileName":"/a/b/project2.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/bravo.tsconfig.json: - {"fileName":"/a/b/bravo.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/other.ts: - {"fileName":"/a/b/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -250,19 +250,19 @@ No shapes updated in the builder:: WatchedFiles:: /a/b/project1.tsconfig.json: - {"fileName":"/a/b/project1.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/alpha.tsconfig.json: - {"fileName":"/a/b/alpha.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/project2.tsconfig.json: - {"fileName":"/a/b/project2.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/bravo.tsconfig.json: - {"fileName":"/a/b/bravo.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/other.ts: - {"fileName":"/a/b/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -354,19 +354,19 @@ No shapes updated in the builder:: WatchedFiles:: /a/b/project1.tsconfig.json: - {"fileName":"/a/b/project1.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/alpha.tsconfig.json: - {"fileName":"/a/b/alpha.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/project2.tsconfig.json: - {"fileName":"/a/b/project2.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/bravo.tsconfig.json: - {"fileName":"/a/b/bravo.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/other.ts: - {"fileName":"/a/b/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -452,19 +452,19 @@ No shapes updated in the builder:: WatchedFiles:: /a/b/project1.tsconfig.json: - {"fileName":"/a/b/project1.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/alpha.tsconfig.json: - {"fileName":"/a/b/alpha.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/project2.tsconfig.json: - {"fileName":"/a/b/project2.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/bravo.tsconfig.json: - {"fileName":"/a/b/bravo.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/other.ts: - {"fileName":"/a/b/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -556,23 +556,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/project1.tsconfig.json: - {"fileName":"/a/b/project1.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/alpha.tsconfig.json: - {"fileName":"/a/b/alpha.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/project2.tsconfig.json: - {"fileName":"/a/b/project2.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/other.ts: - {"fileName":"/a/b/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -618,23 +618,23 @@ No shapes updated in the builder:: WatchedFiles:: /a/b/project1.tsconfig.json: - {"fileName":"/a/b/project1.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/alpha.tsconfig.json: - {"fileName":"/a/b/alpha.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/project2.tsconfig.json: - {"fileName":"/a/b/project2.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/other.ts: - {"fileName":"/a/b/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -723,23 +723,23 @@ No shapes updated in the builder:: WatchedFiles:: /a/b/project1.tsconfig.json: - {"fileName":"/a/b/project1.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/alpha.tsconfig.json: - {"fileName":"/a/b/alpha.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/project2.tsconfig.json: - {"fileName":"/a/b/project2.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/other.ts: - {"fileName":"/a/b/other.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 4801d6ac41c30..0edbadc083886 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,149 +628,149 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -1978,149 +1978,149 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -2199,149 +2199,149 @@ Output:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -2378,149 +2378,149 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -2669,149 +2669,149 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -2915,149 +2915,149 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -3161,149 +3161,149 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -3407,149 +3407,149 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -3604,149 +3604,149 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -3761,149 +3761,149 @@ Output:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -3940,149 +3940,149 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -4233,149 +4233,149 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -4479,149 +4479,149 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -4703,149 +4703,149 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -5001,149 +5001,149 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -5185,149 +5185,149 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -5481,149 +5481,149 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -5727,149 +5727,149 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -5973,149 +5973,149 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -6219,149 +6219,149 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -6416,149 +6416,149 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} exitCode:: ExitStatus.undefined @@ -6573,149 +6573,149 @@ Output:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg8/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg8/index.ts: - {"fileName":"/user/username/projects/myproject/pkg8/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg9/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg9/index.ts: - {"fileName":"/user/username/projects/myproject/pkg9/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg10/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg10/index.ts: - {"fileName":"/user/username/projects/myproject/pkg10/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg11/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg11/index.ts: - {"fileName":"/user/username/projects/myproject/pkg11/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg12/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg12/index.ts: - {"fileName":"/user/username/projects/myproject/pkg12/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg13/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg13/index.ts: - {"fileName":"/user/username/projects/myproject/pkg13/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg14/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg14/index.ts: - {"fileName":"/user/username/projects/myproject/pkg14/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg15/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg15/index.ts: - {"fileName":"/user/username/projects/myproject/pkg15/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg16/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg16/index.ts: - {"fileName":"/user/username/projects/myproject/pkg16/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg17/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg17/index.ts: - {"fileName":"/user/username/projects/myproject/pkg17/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg18/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg18/index.ts: - {"fileName":"/user/username/projects/myproject/pkg18/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg19/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg19/index.ts: - {"fileName":"/user/username/projects/myproject/pkg19/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg20/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg20/index.ts: - {"fileName":"/user/username/projects/myproject/pkg20/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg21/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg21/index.ts: - {"fileName":"/user/username/projects/myproject/pkg21/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg22/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg22/index.ts: - {"fileName":"/user/username/projects/myproject/pkg22/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} /user/username/projects/myproject/pkg8: - {"directoryName":"/user/username/projects/myproject/pkg8"} + {} /user/username/projects/myproject/pkg9: - {"directoryName":"/user/username/projects/myproject/pkg9"} + {} /user/username/projects/myproject/pkg10: - {"directoryName":"/user/username/projects/myproject/pkg10"} + {} /user/username/projects/myproject/pkg11: - {"directoryName":"/user/username/projects/myproject/pkg11"} + {} /user/username/projects/myproject/pkg12: - {"directoryName":"/user/username/projects/myproject/pkg12"} + {} /user/username/projects/myproject/pkg13: - {"directoryName":"/user/username/projects/myproject/pkg13"} + {} /user/username/projects/myproject/pkg14: - {"directoryName":"/user/username/projects/myproject/pkg14"} + {} /user/username/projects/myproject/pkg15: - {"directoryName":"/user/username/projects/myproject/pkg15"} + {} /user/username/projects/myproject/pkg16: - {"directoryName":"/user/username/projects/myproject/pkg16"} + {} /user/username/projects/myproject/pkg17: - {"directoryName":"/user/username/projects/myproject/pkg17"} + {} /user/username/projects/myproject/pkg18: - {"directoryName":"/user/username/projects/myproject/pkg18"} + {} /user/username/projects/myproject/pkg19: - {"directoryName":"/user/username/projects/myproject/pkg19"} + {} /user/username/projects/myproject/pkg20: - {"directoryName":"/user/username/projects/myproject/pkg20"} + {} /user/username/projects/myproject/pkg21: - {"directoryName":"/user/username/projects/myproject/pkg21"} + {} /user/username/projects/myproject/pkg22: - {"directoryName":"/user/username/projects/myproject/pkg22"} + {} 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 101f50f77166a..e4cfb19e51099 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,29 +108,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} exitCode:: ExitStatus.undefined @@ -318,29 +318,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} exitCode:: ExitStatus.undefined @@ -399,29 +399,29 @@ Output:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} exitCode:: ExitStatus.undefined @@ -458,29 +458,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} exitCode:: ExitStatus.undefined @@ -580,29 +580,29 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} exitCode:: ExitStatus.undefined @@ -617,29 +617,29 @@ Output:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} exitCode:: ExitStatus.undefined 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 9713d0cfff668..1abb684564378 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,41 +160,41 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} exitCode:: ExitStatus.undefined @@ -484,41 +484,41 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} exitCode:: ExitStatus.undefined @@ -579,41 +579,41 @@ Output:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} exitCode:: ExitStatus.undefined @@ -650,41 +650,41 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} exitCode:: ExitStatus.undefined @@ -818,41 +818,41 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} exitCode:: ExitStatus.undefined @@ -869,41 +869,41 @@ Output:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} exitCode:: ExitStatus.undefined 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 eac0eb81ab8d4..df6858c7c151e 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,59 +238,59 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} exitCode:: ExitStatus.undefined @@ -733,59 +733,59 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} exitCode:: ExitStatus.undefined @@ -849,59 +849,59 @@ Output:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} exitCode:: ExitStatus.undefined @@ -938,59 +938,59 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} exitCode:: ExitStatus.undefined @@ -1139,59 +1139,59 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} exitCode:: ExitStatus.undefined @@ -1246,59 +1246,59 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} exitCode:: ExitStatus.undefined @@ -1313,59 +1313,59 @@ Output:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} exitCode:: ExitStatus.undefined @@ -1402,59 +1402,59 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} exitCode:: ExitStatus.undefined @@ -1605,59 +1605,59 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} exitCode:: ExitStatus.undefined @@ -1719,59 +1719,59 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} exitCode:: ExitStatus.undefined @@ -1873,59 +1873,59 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} exitCode:: ExitStatus.undefined @@ -1940,59 +1940,59 @@ Output:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg4/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg4/index.ts: - {"fileName":"/user/username/projects/myproject/pkg4/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg5/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg5/index.ts: - {"fileName":"/user/username/projects/myproject/pkg5/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg6/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg6/index.ts: - {"fileName":"/user/username/projects/myproject/pkg6/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg7/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg7/index.ts: - {"fileName":"/user/username/projects/myproject/pkg7/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} /user/username/projects/myproject/pkg4: - {"directoryName":"/user/username/projects/myproject/pkg4"} + {} /user/username/projects/myproject/pkg5: - {"directoryName":"/user/username/projects/myproject/pkg5"} + {} /user/username/projects/myproject/pkg6: - {"directoryName":"/user/username/projects/myproject/pkg6"} + {} /user/username/projects/myproject/pkg7: - {"directoryName":"/user/username/projects/myproject/pkg7"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tsbuildWatch/publicApi/with-custom-transformers.js b/tests/baselines/reference/tsbuildWatch/publicApi/with-custom-transformers.js index 420610c1c756f..eb59bc7d03b60 100644 --- a/tests/baselines/reference/tsbuildWatch/publicApi/with-custom-transformers.js +++ b/tests/baselines/reference/tsbuildWatch/publicApi/with-custom-transformers.js @@ -87,23 +87,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/shared/tsconfig.json: - {"fileName":"/user/username/projects/myproject/shared/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/shared/index.ts: - {"fileName":"/user/username/projects/myproject/shared/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/webpack/tsconfig.json: - {"fileName":"/user/username/projects/myproject/webpack/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/webpack/index.ts: - {"fileName":"/user/username/projects/myproject/webpack/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/shared: - {"directoryName":"/user/username/projects/myproject/shared"} + {} /user/username/projects/myproject/webpack: - {"directoryName":"/user/username/projects/myproject/webpack"} + {} exitCode:: ExitStatus.undefined @@ -313,23 +313,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/shared/tsconfig.json: - {"fileName":"/user/username/projects/myproject/shared/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/shared/index.ts: - {"fileName":"/user/username/projects/myproject/shared/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/webpack/tsconfig.json: - {"fileName":"/user/username/projects/myproject/webpack/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/webpack/index.ts: - {"fileName":"/user/username/projects/myproject/webpack/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/shared: - {"directoryName":"/user/username/projects/myproject/shared"} + {} /user/username/projects/myproject/webpack: - {"directoryName":"/user/username/projects/myproject/webpack"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js b/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js index 521216bae3bf3..673e405953031 100644 --- a/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js +++ b/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js @@ -127,27 +127,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/reexport/src/pure/tsconfig.json: - {"fileName":"/user/username/projects/reexport/src/pure/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/reexport/src/pure/index.ts: - {"fileName":"/user/username/projects/reexport/src/pure/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/reexport/src/pure/session.ts: - {"fileName":"/user/username/projects/reexport/src/pure/session.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/reexport/src/main/tsconfig.json: - {"fileName":"/user/username/projects/reexport/src/main/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/reexport/src/main/index.ts: - {"fileName":"/user/username/projects/reexport/src/main/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/reexport/src/pure/package.json: - {"fileName":"/user/username/projects/reexport/src/pure/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/reexport/src/tsconfig.json: - {"fileName":"/user/username/projects/reexport/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/reexport/src/pure: - {"directoryName":"/user/username/projects/reexport/src/pure"} + {} /user/username/projects/reexport/src/main: - {"directoryName":"/user/username/projects/reexport/src/main"} + {} exitCode:: ExitStatus.undefined @@ -327,27 +327,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/reexport/src/pure/tsconfig.json: - {"fileName":"/user/username/projects/reexport/src/pure/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/reexport/src/pure/index.ts: - {"fileName":"/user/username/projects/reexport/src/pure/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/reexport/src/pure/session.ts: - {"fileName":"/user/username/projects/reexport/src/pure/session.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/reexport/src/main/tsconfig.json: - {"fileName":"/user/username/projects/reexport/src/main/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/reexport/src/main/index.ts: - {"fileName":"/user/username/projects/reexport/src/main/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/reexport/src/pure/package.json: - {"fileName":"/user/username/projects/reexport/src/pure/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/reexport/src/tsconfig.json: - {"fileName":"/user/username/projects/reexport/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/reexport/src/pure: - {"directoryName":"/user/username/projects/reexport/src/pure"} + {} /user/username/projects/reexport/src/main: - {"directoryName":"/user/username/projects/reexport/src/main"} + {} exitCode:: ExitStatus.undefined @@ -484,27 +484,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/reexport/src/pure/tsconfig.json: - {"fileName":"/user/username/projects/reexport/src/pure/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/reexport/src/pure/index.ts: - {"fileName":"/user/username/projects/reexport/src/pure/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/reexport/src/pure/session.ts: - {"fileName":"/user/username/projects/reexport/src/pure/session.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/reexport/src/main/tsconfig.json: - {"fileName":"/user/username/projects/reexport/src/main/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/reexport/src/main/index.ts: - {"fileName":"/user/username/projects/reexport/src/main/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/reexport/src/pure/package.json: - {"fileName":"/user/username/projects/reexport/src/pure/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/reexport/src/tsconfig.json: - {"fileName":"/user/username/projects/reexport/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/reexport/src/pure: - {"directoryName":"/user/username/projects/reexport/src/pure"} + {} /user/username/projects/reexport/src/main: - {"directoryName":"/user/username/projects/reexport/src/main"} + {} 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 aa1986a3e30e6..18960b96a8d6a 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,37 +149,37 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/typings/xterm.d.ts: - {"fileName":"/user/username/projects/myproject/typings/xterm.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} exitCode:: ExitStatus.undefined @@ -309,37 +309,37 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/typings/xterm.d.ts: - {"fileName":"/user/username/projects/myproject/typings/xterm.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} exitCode:: ExitStatus.undefined @@ -365,31 +365,31 @@ Output:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/typings/xterm.d.ts: - {"fileName":"/user/username/projects/myproject/typings/xterm.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} exitCode:: ExitStatus.undefined @@ -471,31 +471,31 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/typings/xterm.d.ts: - {"fileName":"/user/username/projects/myproject/typings/xterm.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} exitCode:: ExitStatus.undefined @@ -525,7 +525,7 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -545,7 +545,7 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: diff --git a/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects.js b/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects.js index aa1986a3e30e6..18960b96a8d6a 100644 --- a/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects.js +++ b/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects.js @@ -149,37 +149,37 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/typings/xterm.d.ts: - {"fileName":"/user/username/projects/myproject/typings/xterm.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} exitCode:: ExitStatus.undefined @@ -309,37 +309,37 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/typings/xterm.d.ts: - {"fileName":"/user/username/projects/myproject/typings/xterm.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg3/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg3/index.ts: - {"fileName":"/user/username/projects/myproject/pkg3/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} /user/username/projects/myproject/pkg3: - {"directoryName":"/user/username/projects/myproject/pkg3"} + {} exitCode:: ExitStatus.undefined @@ -365,31 +365,31 @@ Output:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/typings/xterm.d.ts: - {"fileName":"/user/username/projects/myproject/typings/xterm.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} exitCode:: ExitStatus.undefined @@ -471,31 +471,31 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg0/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: - {"fileName":"/user/username/projects/myproject/pkg0/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/typings/xterm.d.ts: - {"fileName":"/user/username/projects/myproject/typings/xterm.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/pkg2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/pkg2/index.ts: - {"fileName":"/user/username/projects/myproject/pkg2/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/pkg0: - {"directoryName":"/user/username/projects/myproject/pkg0"} + {} /user/username/projects/myproject/pkg1: - {"directoryName":"/user/username/projects/myproject/pkg1"} + {} /user/username/projects/myproject/pkg2: - {"directoryName":"/user/username/projects/myproject/pkg2"} + {} exitCode:: ExitStatus.undefined @@ -525,7 +525,7 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -545,7 +545,7 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 b2c561112eb81..dc357d588519f 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,17 +45,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /tsconfig.json: - {"fileName":"/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /f.ts: - {"fileName":"/f.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /: - {"directoryName":""} + {} exitCode:: ExitStatus.undefined @@ -92,17 +92,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /tsconfig.json: - {"fileName":"/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /f.ts: - {"fileName":"/f.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /: - {"directoryName":""} + {} exitCode:: ExitStatus.undefined 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 b096bac970057..ffb9c11347e0c 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,17 +44,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /tsconfig.json: - {"fileName":"/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /f.ts: - {"fileName":"/f.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /: - {"directoryName":""} + {} exitCode:: ExitStatus.undefined @@ -91,17 +91,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /tsconfig.json: - {"fileName":"/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /f.ts: - {"fileName":"/f.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /: - {"directoryName":""} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js b/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js index d032563a545d9..4c5d051e5c2cd 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js @@ -46,9 +46,9 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /f.ts: - {"fileName":"/f.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -96,9 +96,9 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /f.ts: - {"fileName":"/f.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: diff --git a/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js b/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js index e021f79145ef0..d3c6ec0de2375 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js @@ -48,9 +48,9 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /f.ts: - {"fileName":"/f.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -98,9 +98,9 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /f.ts: - {"fileName":"/f.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: diff --git a/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js b/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js index 54d330d5c834b..eb1b3f8eb6841 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js @@ -41,9 +41,9 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /f.ts: - {"fileName":"/f.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -84,9 +84,9 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /f.ts: - {"fileName":"/f.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 aa769ab316ac8..b008b4a4e442c 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/without---diagnostics-or---extendedDiagnostics.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/without---diagnostics-or---extendedDiagnostics.js @@ -42,9 +42,9 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /f.ts: - {"fileName":"/f.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -86,9 +86,9 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /f.ts: - {"fileName":"/f.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 956eca5b5d3f0..5a4a02eb23515 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:: WatchedFiles:: /user/someone/projects/myproject/file3.ts: - {"fileName":"/user/someone/projects/myproject/file3.ts","pollingInterval":250} + {"pollingInterval":250} /user/someone/projects/myproject/file2.ts: - {"fileName":"/user/someone/projects/myproject/file2.ts","pollingInterval":250} + {"pollingInterval":250} /user/someone/projects/myproject/file1.ts: - {"fileName":"/user/someone/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -117,13 +117,13 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/someone/projects/myproject/file3.ts: - {"fileName":"/user/someone/projects/myproject/file3.ts","pollingInterval":250} + {"pollingInterval":250} /user/someone/projects/myproject/file2.ts: - {"fileName":"/user/someone/projects/myproject/file2.ts","pollingInterval":250} + {"pollingInterval":250} /user/someone/projects/myproject/file1.ts: - {"fileName":"/user/someone/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 102a3122368ca..d749bdc5e93f5 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 @@ -45,19 +45,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /home/username/project/tsconfig.json: - {"fileName":"/home/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /home/username/project/app/file.ts: - {"fileName":"/home/username/project/app/file.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /home/username/project/node_modules/@types: - {"fileName":"/home/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /home/username/project/app: - {"directoryName":"/home/username/project/app"} + {} exitCode:: ExitStatus.undefined @@ -98,19 +98,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /home/username/project/tsconfig.json: - {"fileName":"/home/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /home/username/project/app/file.ts: - {"fileName":"/home/username/project/app/file.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /home/username/project/node_modules/@types: - {"fileName":"/home/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /home/username/project/app: - {"directoryName":"/home/username/project/app"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-carriageReturn-lineFeed.js b/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-carriageReturn-lineFeed.js index a4215828961e7..347cfffba62e2 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-carriageReturn-lineFeed.js +++ b/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-carriageReturn-lineFeed.js @@ -43,9 +43,9 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/app.ts: - {"fileName":"/a/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -92,9 +92,9 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/app.ts: - {"fileName":"/a/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: diff --git a/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-lineFeed.js b/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-lineFeed.js index 29bb1dc14a122..2a88fdc4073c5 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-lineFeed.js +++ b/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-lineFeed.js @@ -43,9 +43,9 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/app.ts: - {"fileName":"/a/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -92,9 +92,9 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/app.ts: - {"fileName":"/a/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 9567f0deb6e50..8c12a46ef38e6 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,23 +57,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/f2.ts: - {"fileName":"/a/b/f2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/f3.ts: - {"fileName":"/a/b/f3.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -137,23 +137,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/f2.ts: - {"fileName":"/a/b/f2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/f3.ts: - {"fileName":"/a/b/f3.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -204,23 +204,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/f2.ts: - {"fileName":"/a/b/f2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/f3.ts: - {"fileName":"/a/b/f3.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 18c5c07ceb7cc..cc2564386e2cc 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 @@ -74,27 +74,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -174,27 +174,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 04f23c2aaa5a2..7d7c741186acf 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,27 +57,27 @@ No shapes updated in the builder:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -162,27 +162,27 @@ No shapes updated in the builder:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 b5c71000f714a..e58da01fd0cd9 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,27 +69,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -162,25 +162,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 f4707855b3345..baa8902364360 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,27 +69,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -170,29 +170,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/b/file1consumer3.ts: - {"fileName":"/a/b/file1Consumer3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 c11c863a1663d..8e1ae2b772471 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,27 +69,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -165,27 +165,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -238,27 +238,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -307,27 +307,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -392,27 +392,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -465,27 +465,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 5e4bee56e5d58..a83f8c73b0b09 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,27 +69,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -164,27 +164,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -239,27 +239,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 1510b14313581..cec482d5c46e8 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,15 +60,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -126,15 +126,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -184,15 +184,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 cdbce1ebf488b..f6b27ac44217c 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 @@ -56,21 +56,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/referencefile1.ts: - {"fileName":"/a/b/referenceFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/modulefile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -129,21 +129,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/referencefile1.ts: - {"fileName":"/a/b/referenceFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/modulefile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -200,21 +200,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/referencefile1.ts: - {"fileName":"/a/b/referenceFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 9f19ac324e202..4e97ac1158424 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,21 +57,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/referencefile1.ts: - {"fileName":"/a/b/referenceFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -131,21 +131,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/referencefile1.ts: - {"fileName":"/a/b/referenceFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/b/modulefile1.ts: - {"fileName":"/a/b/modulefile1.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 dcabd0690ecbc..7be50c4e9d7d2 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,27 +69,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -169,27 +169,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 46553cf38b57d..e015db509c975 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,29 +75,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1consumer1.ts: - {"fileName":"/a/b/file1Consumer1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -176,29 +176,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1consumer1.ts: - {"fileName":"/a/b/file1Consumer1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -250,29 +250,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1consumer1.ts: - {"fileName":"/a/b/file1Consumer1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -332,29 +332,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1.ts: - {"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer1consumer1.ts: - {"fileName":"/a/b/file1Consumer1Consumer1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file1consumer2.ts: - {"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/globalfile3.ts: - {"fileName":"/a/b/globalFile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile2.ts: - {"fileName":"/a/b/moduleFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 7cd30bac07b7c..9a6b81585be9c 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,21 +53,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1.ts: - {"fileName":"/a/b/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file2.ts: - {"fileName":"/a/b/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -122,21 +122,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1.ts: - {"fileName":"/a/b/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/file2.ts: - {"fileName":"/a/b/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 17fec0923ba94..0b0576cf65afd 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,21 +51,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/tsconfig.json: - {"fileName":"/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/a.ts: - {"fileName":"/a/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/b.ts: - {"fileName":"/a/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/node_modules/@types: - {"fileName":"/a/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined @@ -112,21 +112,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/tsconfig.json: - {"fileName":"/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/a.ts: - {"fileName":"/a/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/b.ts: - {"fileName":"/a/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/node_modules/@types: - {"fileName":"/a/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined @@ -170,21 +170,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/tsconfig.json: - {"fileName":"/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/a.ts: - {"fileName":"/a/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/b.ts: - {"fileName":"/a/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/node_modules/@types: - {"fileName":"/a/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined 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 422ae9350d56d..0ae06b5698ab8 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 @@ -45,21 +45,21 @@ No shapes updated in the builder:: WatchedFiles:: /a/tsconfig.json: - {"fileName":"/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/a.ts: - {"fileName":"/a/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/b.ts: - {"fileName":"/a/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/node_modules/@types: - {"fileName":"/a/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined @@ -98,21 +98,21 @@ No shapes updated in the builder:: WatchedFiles:: /a/tsconfig.json: - {"fileName":"/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/a.ts: - {"fileName":"/a/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/b.ts: - {"fileName":"/a/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/node_modules/@types: - {"fileName":"/a/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined @@ -151,21 +151,21 @@ No shapes updated in the builder:: WatchedFiles:: /a/tsconfig.json: - {"fileName":"/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/a.ts: - {"fileName":"/a/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/b.ts: - {"fileName":"/a/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/node_modules/@types: - {"fileName":"/a/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined 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 dec712bb5bd5b..1eedb7d2f3042 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,21 +45,21 @@ No shapes updated in the builder:: WatchedFiles:: /a/tsconfig.json: - {"fileName":"/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/a.ts: - {"fileName":"/a/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/b.ts: - {"fileName":"/a/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/node_modules/@types: - {"fileName":"/a/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined @@ -98,21 +98,21 @@ No shapes updated in the builder:: WatchedFiles:: /a/tsconfig.json: - {"fileName":"/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/a.ts: - {"fileName":"/a/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/b.ts: - {"fileName":"/a/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/node_modules/@types: - {"fileName":"/a/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined @@ -151,21 +151,21 @@ No shapes updated in the builder:: WatchedFiles:: /a/tsconfig.json: - {"fileName":"/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/a.ts: - {"fileName":"/a/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/b.ts: - {"fileName":"/a/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/node_modules/@types: - {"fileName":"/a/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined 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 4c567ed00e42f..d4833230a6764 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 @@ -58,19 +58,19 @@ No shapes updated in the builder:: WatchedFiles:: /a/b/project/tsconfig.json: - {"fileName":"/a/b/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/output/anotherdependency/file1.d.ts: - {"fileName":"/a/b/output/AnotherDependency/file1.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/dependencies/file2.d.ts: - {"fileName":"/a/b/dependencies/file2.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/project/src/main.ts: - {"fileName":"/a/b/project/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/project/src/main2.ts: - {"fileName":"/a/b/project/src/main2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/project/node_modules/@types: - {"fileName":"/a/b/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 e412e7ba9c148..13399a9a735fe 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 @@ -68,19 +68,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/project/tsconfig.json: - {"fileName":"/a/b/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/output/anotherdependency/file1.d.ts: - {"fileName":"/a/b/output/AnotherDependency/file1.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/dependencies/file2.d.ts: - {"fileName":"/a/b/dependencies/file2.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/project/src/main.ts: - {"fileName":"/a/b/project/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/project/src/main2.ts: - {"fileName":"/a/b/project/src/main2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/project/node_modules/@types: - {"fileName":"/a/b/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 59d6f8709809e..185dd688a2a07 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 @@ -51,21 +51,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/rootfolder/project/tsconfig.json: - {"fileName":"/a/rootFolder/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/rootfolder/project/scripts/javascript.js: - {"fileName":"/a/rootFolder/project/Scripts/Javascript.js","pollingInterval":250} + {"pollingInterval":250} /a/rootfolder/project/scripts/typescript.ts: - {"fileName":"/a/rootFolder/project/Scripts/TypeScript.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/rootfolder/project/node_modules/@types: - {"fileName":"/a/rootFolder/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/rootfolder/project/scripts: - {"directoryName":"/a/rootfolder/project/scripts"} + {} exitCode:: ExitStatus.undefined @@ -112,21 +112,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/rootfolder/project/tsconfig.json: - {"fileName":"/a/rootFolder/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/rootfolder/project/scripts/javascript.js: - {"fileName":"/a/rootFolder/project/Scripts/Javascript.js","pollingInterval":250} + {"pollingInterval":250} /a/rootfolder/project/scripts/typescript.ts: - {"fileName":"/a/rootFolder/project/Scripts/TypeScript.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/rootfolder/project/node_modules/@types: - {"fileName":"/a/rootFolder/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/rootfolder/project/scripts: - {"directoryName":"/a/rootfolder/project/scripts"} + {} exitCode:: ExitStatus.undefined 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 c0f3c8e440872..3cc9bba0b7055 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 @@ -67,25 +67,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -204,25 +204,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -333,25 +333,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -462,25 +462,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 9f963780ba505..f19c7b993d3f1 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 @@ -67,25 +67,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -135,25 +135,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -195,25 +195,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -255,25 +255,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 88fa93bbace56..0907382f6bcea 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 @@ -67,23 +67,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -236,23 +236,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -392,23 +392,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -547,23 +547,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 aea74116db48b..929568c2ee88e 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 @@ -67,23 +67,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -167,23 +167,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -245,23 +245,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -322,23 +322,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 8858dcf60a9e6..9a56a01a3b5ad 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 @@ -104,27 +104,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -362,27 +362,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -531,27 +531,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -697,27 +697,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 dd7a19af54776..09a17fbd93b02 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 @@ -104,27 +104,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -218,27 +218,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -291,27 +291,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -361,27 +361,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 c2a45a99122d9..381198850379f 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 @@ -90,23 +90,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -379,23 +379,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -589,23 +589,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -795,23 +795,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 89a4a60dc5a67..35d94328df419 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 @@ -90,23 +90,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -265,23 +265,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -341,23 +341,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -413,23 +413,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 d1bcc8e8027eb..0d503178b79fd 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 @@ -99,25 +99,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -420,25 +420,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -649,25 +649,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -873,25 +873,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 eb9fda91345d8..a5e22a52e41c8 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 @@ -99,25 +99,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -291,25 +291,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -371,25 +371,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -446,25 +446,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 6ee85b69fa6f1..9f7782fbed704 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,23 +76,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -206,23 +206,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -262,23 +262,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -398,23 +398,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -528,23 +528,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -582,23 +582,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -695,23 +695,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js index 95ee84b7d9d62..9f28c1578d944 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js @@ -76,23 +76,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -130,23 +130,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -186,23 +186,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -264,23 +264,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -318,23 +318,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -372,23 +372,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -427,23 +427,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined 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 8b2040ae2e811..525cc83bd8f35 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 @@ -67,25 +67,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -206,25 +206,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -333,25 +333,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -460,25 +460,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 ea41de3de6937..2da532368683e 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 @@ -67,25 +67,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -139,25 +139,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -199,25 +199,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -259,25 +259,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 6cb1f32e349e8..d92f6f65dab6a 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 @@ -67,23 +67,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -244,23 +244,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -390,23 +390,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -536,23 +536,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 006dc2531d614..8743c65801e06 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 @@ -67,23 +67,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -177,23 +177,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -256,23 +256,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -335,23 +335,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 d9f4c9fd584a1..5046fb04216cd 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 @@ -104,27 +104,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -400,27 +400,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -640,27 +640,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -880,27 +880,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 5449d325742a4..12c48ea7bf62a 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 @@ -104,27 +104,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -258,27 +258,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -356,27 +356,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -454,27 +454,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 8d904559b5462..7638c6a4db48c 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 @@ -90,23 +90,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -394,23 +394,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -579,23 +579,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -764,23 +764,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 1d999876c4df3..2aea217dbdb93 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 @@ -90,23 +90,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -282,23 +282,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -355,23 +355,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -428,23 +428,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 a112d03a8b537..87cbb662e08ff 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 @@ -99,25 +99,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -442,25 +442,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -645,25 +645,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -848,25 +848,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 8fd8f895f1f16..24982d19a8ebe 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 @@ -99,25 +99,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -315,25 +315,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -391,25 +391,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -467,25 +467,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 c2039ff70c761..91c83f5229419 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,23 +76,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -207,23 +207,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -263,23 +263,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -414,23 +414,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -545,23 +545,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -599,23 +599,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -714,23 +714,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js index 6d634ced85273..50cd7e28d0313 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js @@ -76,23 +76,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -130,23 +130,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -186,23 +186,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -278,23 +278,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -332,23 +332,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -386,23 +386,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -442,23 +442,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined 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 94cf450ad1931..4cc4003533445 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 @@ -67,25 +67,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -208,25 +208,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -348,25 +348,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -481,25 +481,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 631343058a2df..db0142cabab74 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 @@ -67,25 +67,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -142,25 +142,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -204,25 +204,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -271,25 +271,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 8c5d45e4ba32e..de505171e98cb 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 @@ -67,23 +67,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -233,23 +233,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -383,23 +383,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -528,23 +528,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 ef905fec9f71d..b82e1c24ce5e7 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 @@ -67,23 +67,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -167,23 +167,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -242,23 +242,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -321,23 +321,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 fb4eb750ae24d..26c8beb5cc2ce 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 @@ -104,27 +104,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -359,27 +359,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -545,27 +545,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -762,27 +762,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 ab0c14cc99bcc..8e95b6ca97709 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 @@ -104,27 +104,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -218,27 +218,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -311,27 +311,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -387,27 +387,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 730cf212a0f5f..9f691b18d98ff 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 @@ -90,23 +90,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -376,23 +376,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -585,23 +585,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -776,23 +776,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 2e3b76320f3b6..0aa2a968214da 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 @@ -90,23 +90,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -265,23 +265,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -343,23 +343,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -423,23 +423,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 8d40fd3311a1e..76722ecfa47d3 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 @@ -99,25 +99,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -417,25 +417,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -647,25 +647,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -858,25 +858,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 831148b964ab3..e625ec28e9c41 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 @@ -99,25 +99,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -291,25 +291,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -375,25 +375,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -460,25 +460,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 388c3ea98bdb6..46d3b42bbc858 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,23 +76,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -205,23 +205,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -261,23 +261,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -396,23 +396,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -525,23 +525,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -579,23 +579,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -691,23 +691,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js index 5b49bc9b5c4fd..11aa5f87ebccb 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js @@ -76,23 +76,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -130,23 +130,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -186,23 +186,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -264,23 +264,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -318,23 +318,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -372,23 +372,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -427,23 +427,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined 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 7aef8d9f002ea..4df00307c9834 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 @@ -67,25 +67,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -212,25 +212,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -353,25 +353,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -487,25 +487,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 602f68acd1802..df40f59f456ab 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 @@ -67,25 +67,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -146,25 +146,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -209,25 +209,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -277,25 +277,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 c24bbaf1fabad..ec0957b470d46 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 @@ -67,23 +67,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -250,23 +250,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -410,23 +410,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -563,23 +563,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 08035ff5be733..d9bb6cc3705f3 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 @@ -67,23 +67,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -184,23 +184,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -266,23 +266,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -353,23 +353,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 0f903e51afbb7..9e7165b2a8285 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 @@ -104,27 +104,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -387,27 +387,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -587,27 +587,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -816,27 +816,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 e1f52a95673ac..68f5a50d62131 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 @@ -104,27 +104,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -246,27 +246,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -350,27 +350,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -438,27 +438,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 f019cd0d582f9..6efdbc44c0c01 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 @@ -90,23 +90,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -407,23 +407,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -626,23 +626,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -828,23 +828,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 693d0c4725d65..ab4950c033d73 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 @@ -90,23 +90,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -296,23 +296,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -381,23 +381,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -472,23 +472,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 d2a19321c034f..d920aeb4b4d37 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 @@ -99,25 +99,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -457,25 +457,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -697,25 +697,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -920,25 +920,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 d7654773855b3..898c33df8ef35 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 @@ -99,25 +99,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -331,25 +331,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -422,25 +422,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -519,25 +519,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 52e96d64033b1..275a2fd51554a 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,23 +76,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -206,23 +206,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -262,23 +262,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -412,23 +412,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -542,23 +542,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -596,23 +596,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -710,23 +710,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js index 2dd2ec0e11e57..0f53fe9d585bf 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js @@ -76,23 +76,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -130,23 +130,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -186,23 +186,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -278,23 +278,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -332,23 +332,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -386,23 +386,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -442,23 +442,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined 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 e29438a0cbddb..ca8a050e1d969 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 @@ -67,25 +67,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -208,25 +208,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -348,25 +348,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -481,25 +481,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 b017cbbdc29c1..f0bdd7df4a406 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 @@ -67,25 +67,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -142,25 +142,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -204,25 +204,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -271,25 +271,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 b5128c2cc7a46..42392d37d4a7e 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 @@ -67,23 +67,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -233,23 +233,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -384,23 +384,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -528,23 +528,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 de5133c813e9b..6145537b43255 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 @@ -67,23 +67,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -167,23 +167,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -240,23 +240,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -318,23 +318,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 5c9a47fe886dc..3062d2e62ddd1 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 @@ -104,27 +104,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -359,27 +359,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -546,27 +546,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -762,27 +762,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 4bba62167cca6..f530e70582c8b 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 @@ -104,27 +104,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -218,27 +218,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -309,27 +309,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -384,27 +384,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 8e0b492bbf7d9..9d3cddab398e1 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 @@ -90,23 +90,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -376,23 +376,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -583,23 +583,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -773,23 +773,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 7d90a7b4c2cbc..d37982eb8712a 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 @@ -90,23 +90,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -265,23 +265,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -338,23 +338,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -417,23 +417,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 3f44f06c3cfb9..b2a0fe6aea129 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 @@ -99,25 +99,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -417,25 +417,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -644,25 +644,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -854,25 +854,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 37b15ccb98a3a..64459160df0b1 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 @@ -99,25 +99,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -291,25 +291,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -369,25 +369,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -453,25 +453,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 8d07a87ae5588..3a51a531993f1 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,23 +76,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -205,23 +205,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -261,23 +261,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -396,23 +396,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -525,23 +525,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -579,23 +579,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -691,23 +691,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js index 138c10b82d654..c19f92ef84399 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js @@ -76,23 +76,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -130,23 +130,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -186,23 +186,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -264,23 +264,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -318,23 +318,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -372,23 +372,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -427,23 +427,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined 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 9a1939aef6a2e..0fd2839be209b 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 @@ -67,25 +67,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -212,25 +212,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -353,25 +353,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -487,25 +487,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 aa4fe544b172d..7b2d88b62d18f 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 @@ -67,25 +67,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -146,25 +146,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -209,25 +209,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -277,25 +277,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.d.ts: - {"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 d7e27d59c8ba8..9bf840f3bbbb2 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 @@ -67,23 +67,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -250,23 +250,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -409,23 +409,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -561,23 +561,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 0d6472e0154e0..71c8d998f63b8 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 @@ -67,23 +67,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -184,23 +184,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -265,23 +265,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -351,23 +351,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 d8690a1a6d14c..b6d899adf9f8e 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 @@ -104,27 +104,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -389,27 +389,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -591,27 +591,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -822,27 +822,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 8c7cad1f4a373..c9b7828bdc063 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 @@ -104,27 +104,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -248,27 +248,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -354,27 +354,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -444,27 +444,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/c.ts: - {"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/d.ts: - {"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/e.ts: - {"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 45271ef1d7a61..79b97b3584b34 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 @@ -90,23 +90,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -407,23 +407,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -625,23 +625,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -826,23 +826,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 f7f987e6d2685..71602b4878bef 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 @@ -90,23 +90,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -296,23 +296,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -380,23 +380,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -470,23 +470,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 6d990235fd131..e27f9cb1eb9ae 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 @@ -99,25 +99,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -457,25 +457,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -696,25 +696,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -918,25 +918,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 2d41ab87a67e9..e1e36b0ad1ffd 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 @@ -99,25 +99,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -331,25 +331,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -421,25 +421,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -517,25 +517,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/app.ts: - {"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/public.ts: - {"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data.ts: - {"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/public.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib2/data2.ts: - {"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 b099c6f41abaf..13f067bb7a6f2 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,23 +76,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -206,23 +206,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -262,23 +262,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -412,23 +412,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -542,23 +542,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -596,23 +596,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -710,23 +710,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js index 5b07e52b126ff..35902a754824d 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js @@ -76,23 +76,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -130,23 +130,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -186,23 +186,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -278,23 +278,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -332,23 +332,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -386,23 +386,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined @@ -442,23 +442,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/noemitonerror/tsconfig.json: - {"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: - {"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/main.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/src/other.ts: - {"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/noemitonerror/node_modules/@types: - {"fileName":"/user/username/projects/noEmitOnError/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/noemitonerror: - {"directoryName":"/user/username/projects/noemitonerror"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/jsxImportSource-option-changed.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/jsxImportSource-option-changed.js index c820b4469c832..ff6a4b9de1001 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/jsxImportSource-option-changed.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/jsxImportSource-option-changed.js @@ -79,23 +79,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/react/jsx-runtime/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/react/Jsx-Runtime/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/index.tsx: - {"fileName":"/user/username/projects/myproject/index.tsx","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/react/package.json: - {"fileName":"/user/username/projects/myproject/node_modules/react/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} exitCode:: ExitStatus.undefined 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 dec29649773ce..364f3df7b258d 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 @@ -67,21 +67,21 @@ c:/project/b.ts (used version) WatchedFiles:: c:/project/tsconfig.json: - {"fileName":"c:/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} c:/project/a.ts: - {"fileName":"c:/project/a.ts","pollingInterval":250} + {"pollingInterval":250} c:/project/b.ts: - {"fileName":"c:/project/b.ts","pollingInterval":250} + {"pollingInterval":250} c:/a/lib/lib.d.ts: - {"fileName":"c:/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} c:/project/node_modules/@types: - {"fileName":"c:/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: c:/project: - {"directoryName":"c:/project"} + {} exitCode:: ExitStatus.undefined @@ -148,21 +148,21 @@ c:/project/b.ts (computed .d.ts) WatchedFiles:: c:/project/tsconfig.json: - {"fileName":"c:/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} c:/project/a.ts: - {"fileName":"c:/project/a.ts","pollingInterval":250} + {"pollingInterval":250} c:/project/b.ts: - {"fileName":"c:/project/b.ts","pollingInterval":250} + {"pollingInterval":250} c:/a/lib/lib.d.ts: - {"fileName":"c:/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} c:/project/node_modules/@types: - {"fileName":"c:/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: c:/project: - {"directoryName":"c:/project"} + {} exitCode:: ExitStatus.undefined 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 4503d40a300d3..2d58a4f9238af 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 @@ -67,21 +67,21 @@ c:/project/b.ts (used version) WatchedFiles:: c:/project/tsconfig.json: - {"fileName":"C:/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} c:/project/a.ts: - {"fileName":"C:/project/a.ts","pollingInterval":250} + {"pollingInterval":250} c:/project/b.ts: - {"fileName":"C:/project/b.ts","pollingInterval":250} + {"pollingInterval":250} c:/a/lib/lib.d.ts: - {"fileName":"C:/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} c:/project/node_modules/@types: - {"fileName":"C:/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: c:/project: - {"directoryName":"c:/project"} + {} exitCode:: ExitStatus.undefined @@ -148,21 +148,21 @@ c:/project/b.ts (computed .d.ts) WatchedFiles:: c:/project/tsconfig.json: - {"fileName":"C:/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} c:/project/a.ts: - {"fileName":"C:/project/a.ts","pollingInterval":250} + {"pollingInterval":250} c:/project/b.ts: - {"fileName":"C:/project/b.ts","pollingInterval":250} + {"pollingInterval":250} c:/a/lib/lib.d.ts: - {"fileName":"C:/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} c:/project/node_modules/@types: - {"fileName":"C:/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: c:/project: - {"directoryName":"c:/project"} + {} exitCode:: ExitStatus.undefined 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 d2f27653bed2a..47cabeca4a004 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 @@ -64,23 +64,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy/a.ts: - {"fileName":"/user/username/projects/myproject/XY/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/link/a.ts: - {"fileName":"/user/username/projects/myproject/link/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -174,23 +174,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy/a.ts: - {"fileName":"/user/username/projects/myproject/XY/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/link/a.ts: - {"fileName":"/user/username/projects/myproject/link/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 9670b01db257f..ed4b3c5db3c0c 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 @@ -73,23 +73,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy.ts: - {"fileName":"/user/username/projects/myproject/XY.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/link.ts: - {"fileName":"/user/username/projects/myproject/link.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -167,23 +167,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy.ts: - {"fileName":"/user/username/projects/myproject/XY.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/link.ts: - {"fileName":"/user/username/projects/myproject/link.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 9d715495c3c4a..e1789660abcaa 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 @@ -51,21 +51,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/another.ts: - {"fileName":"/user/username/projects/myproject/another.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/logger.ts: - {"fileName":"/user/username/projects/myproject/logger.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -128,21 +128,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/another.ts: - {"fileName":"/user/username/projects/myproject/another.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/logger.ts: - {"fileName":"/user/username/projects/myproject/logger.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 b34869681bb6c..876c3b455d844 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 @@ -64,23 +64,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy/a.ts: - {"fileName":"/user/username/projects/myproject/XY/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/link/a.ts: - {"fileName":"/user/username/projects/myproject/link/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -174,23 +174,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy/a.ts: - {"fileName":"/user/username/projects/myproject/XY/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/link/a.ts: - {"fileName":"/user/username/projects/myproject/link/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 61a08b485eff8..091fb5e93263c 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 @@ -73,23 +73,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy.ts: - {"fileName":"/user/username/projects/myproject/XY.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/link.ts: - {"fileName":"/user/username/projects/myproject/link.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -167,23 +167,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy.ts: - {"fileName":"/user/username/projects/myproject/XY.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/link.ts: - {"fileName":"/user/username/projects/myproject/link.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 e54490bf6694b..bd56aff0b1d2f 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,25 +68,25 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/yx: - {"fileName":"/user/username/projects/myproject/yX","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/link/a.ts: - {"fileName":"/user/username/projects/myproject/link/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy/a.ts: - {"fileName":"/user/username/projects/myproject/XY/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -184,25 +184,25 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/yx: - {"fileName":"/user/username/projects/myproject/yX","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/link/a.ts: - {"fileName":"/user/username/projects/myproject/link/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy/a.ts: - {"fileName":"/user/username/projects/myproject/XY/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 c42e49cc01c79..04eeeb0e9eb88 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,27 +77,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy.ts: - {"fileName":"/user/username/projects/myproject/XY.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/yx: - {"fileName":"/user/username/projects/myproject/yX","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/link.ts: - {"fileName":"/user/username/projects/myproject/link.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -177,27 +177,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy.ts: - {"fileName":"/user/username/projects/myproject/XY.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/yx: - {"fileName":"/user/username/projects/myproject/yX","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/link.ts: - {"fileName":"/user/username/projects/myproject/link.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 23a93128bab68..af6ed78c1726e 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 @@ -72,23 +72,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy/a.ts: - {"fileName":"/user/username/projects/myproject/Xy/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/link/a.ts: - {"fileName":"/user/username/projects/myproject/link/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -190,23 +190,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy/a.ts: - {"fileName":"/user/username/projects/myproject/Xy/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/link/a.ts: - {"fileName":"/user/username/projects/myproject/link/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 dd0ca380d9f3e..01946c6f288d1 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 @@ -81,23 +81,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy.ts: - {"fileName":"/user/username/projects/myproject/XY.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/link.ts: - {"fileName":"/user/username/projects/myproject/link.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -183,23 +183,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy.ts: - {"fileName":"/user/username/projects/myproject/XY.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/link.ts: - {"fileName":"/user/username/projects/myproject/link.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 b80e2134bce4b..194777303eb65 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 @@ -72,23 +72,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy/a.ts: - {"fileName":"/user/username/projects/myproject/Xy/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/link/a.ts: - {"fileName":"/user/username/projects/myproject/link/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -190,23 +190,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy/a.ts: - {"fileName":"/user/username/projects/myproject/Xy/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/link/a.ts: - {"fileName":"/user/username/projects/myproject/link/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 c97de6ce4280b..f6e5fd17ffbf3 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 @@ -81,23 +81,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy.ts: - {"fileName":"/user/username/projects/myproject/XY.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/link.ts: - {"fileName":"/user/username/projects/myproject/link.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -183,23 +183,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/xy.ts: - {"fileName":"/user/username/projects/myproject/XY.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/link.ts: - {"fileName":"/user/username/projects/myproject/link.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 8478461feaac8..fdb35859ec7da 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 @@ -95,23 +95,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/modulea.ts: - {"fileName":"/user/username/projects/myproject/moduleA.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/modulec.ts: - {"fileName":"/user/username/projects/myproject/ModuleC.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/moduleb.ts: - {"fileName":"/user/username/projects/myproject/moduleB.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -204,23 +204,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/modulea.ts: - {"fileName":"/user/username/projects/myproject/moduleA.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/modulec.ts: - {"fileName":"/user/username/projects/myproject/ModuleC.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/moduleb.ts: - {"fileName":"/user/username/projects/myproject/moduleB.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 92a7dcac194b7..9c1c407b0d69e 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 @@ -51,21 +51,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/another.ts: - {"fileName":"/user/username/projects/myproject/another.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/logger.ts: - {"fileName":"/user/username/projects/myproject/logger.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -124,21 +124,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/another.ts: - {"fileName":"/user/username/projects/myproject/another.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/logger.ts: - {"fileName":"/user/username/projects/myproject/logger.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} 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 85e8c7d2ef3a9..d2c816d7b22f3 100644 --- a/tests/baselines/reference/tscWatch/incremental/editing-module-augmentation-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/editing-module-augmentation-watch.js @@ -59,27 +59,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/src/index.ts: - {"fileName":"/users/username/projects/project/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/classnames/index.d.ts: - {"fileName":"/users/username/projects/project/node_modules/classnames/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/src/types/classnames.d.ts: - {"fileName":"/users/username/projects/project/src/types/classnames.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project/src: - {"directoryName":"/users/username/projects/project/src"} + {} /users/username/projects/project/node_modules: - {"directoryName":"/users/username/projects/project/node_modules"} + {} /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined @@ -202,27 +202,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/src/index.ts: - {"fileName":"/users/username/projects/project/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/classnames/index.d.ts: - {"fileName":"/users/username/projects/project/node_modules/classnames/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/src/types/classnames.d.ts: - {"fileName":"/users/username/projects/project/src/types/classnames.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project/src: - {"directoryName":"/users/username/projects/project/src"} + {} /users/username/projects/project/node_modules: - {"directoryName":"/users/username/projects/project/node_modules"} + {} /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} 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 ddb468cd1adc6..6d67f5ccb89ef 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,25 +56,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/index.tsx: - {"fileName":"/users/username/projects/project/index.tsx","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/tslib/index.d.ts: - {"fileName":"/users/username/projects/project/node_modules/tslib/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/tslib/package.json: - {"fileName":"/users/username/projects/project/node_modules/tslib/package.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project/node_modules: - {"directoryName":"/users/username/projects/project/node_modules"} + {} /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined @@ -123,21 +123,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/index.tsx: - {"fileName":"/users/username/projects/project/index.tsx","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project/node_modules: - {"directoryName":"/users/username/projects/project/node_modules"} + {} /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} 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 29c0bd96687d5..1f873601068e3 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,25 +78,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/a.ts: - {"fileName":"/users/username/projects/project/a.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/b.ts: - {"fileName":"/users/username/projects/project/b.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/c.ts: - {"fileName":"/users/username/projects/project/c.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/index.ts: - {"fileName":"/users/username/projects/project/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined @@ -274,25 +274,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/a.ts: - {"fileName":"/users/username/projects/project/a.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/b.ts: - {"fileName":"/users/username/projects/project/b.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/c.ts: - {"fileName":"/users/username/projects/project/c.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/index.ts: - {"fileName":"/users/username/projects/project/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined 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 9563e4deec048..10a69ac0c5780 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:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/index.tsx: - {"fileName":"/users/username/projects/project/index.tsx","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules: - {"fileName":"/users/username/projects/project/node_modules","pollingInterval":500} + {"pollingInterval":500} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined @@ -176,25 +176,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/index.tsx: - {"fileName":"/users/username/projects/project/index.tsx","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: - {"fileName":"/users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/react/package.json: - {"fileName":"/users/username/projects/project/node_modules/react/package.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project/node_modules: - {"directoryName":"/users/username/projects/project/node_modules"} + {} /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} 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 a130e72c881ff..1d9a9a2bcebb5 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,25 +67,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/index.tsx: - {"fileName":"/users/username/projects/project/index.tsx","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: - {"fileName":"/users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/react/package.json: - {"fileName":"/users/username/projects/project/node_modules/react/package.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project/node_modules: - {"directoryName":"/users/username/projects/project/node_modules"} + {} /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined @@ -189,21 +189,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/index.tsx: - {"fileName":"/users/username/projects/project/index.tsx","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project/node_modules: - {"directoryName":"/users/username/projects/project/node_modules"} + {} /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} 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 39c33b42e147b..00be2119f4948 100644 --- a/tests/baselines/reference/tscWatch/incremental/jsxImportSource-option-changed-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/jsxImportSource-option-changed-watch.js @@ -90,25 +90,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/index.tsx: - {"fileName":"/users/username/projects/project/index.tsx","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: - {"fileName":"/users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/react/package.json: - {"fileName":"/users/username/projects/project/node_modules/react/package.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project/node_modules: - {"directoryName":"/users/username/projects/project/node_modules"} + {} /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined @@ -224,25 +224,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/index.tsx: - {"fileName":"/users/username/projects/project/index.tsx","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/preact/jsx-runtime/index.d.ts: - {"fileName":"/users/username/projects/project/node_modules/preact/jsx-runtime/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/preact/package.json: - {"fileName":"/users/username/projects/project/node_modules/preact/package.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project/node_modules: - {"directoryName":"/users/username/projects/project/node_modules"} + {} /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} 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 98fbfba2417b4..2cbc90a8a0bd5 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,21 +56,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file1.ts: - {"fileName":"/users/username/projects/project/file1.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file2.ts: - {"fileName":"/users/username/projects/project/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined @@ -182,21 +182,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file1.ts: - {"fileName":"/users/username/projects/project/file1.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file2.ts: - {"fileName":"/users/username/projects/project/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined 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 49f113c239af3..accec05fc2259 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,21 +51,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file1.ts: - {"fileName":"/users/username/projects/project/file1.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file2.ts: - {"fileName":"/users/username/projects/project/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined @@ -160,21 +160,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file1.ts: - {"fileName":"/users/username/projects/project/file1.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file2.ts: - {"fileName":"/users/username/projects/project/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined 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 b19a70d163cec..bd0bf92eaa2ed 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,21 +45,21 @@ No shapes updated in the builder:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file1.ts: - {"fileName":"/users/username/projects/project/file1.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file2.ts: - {"fileName":"/users/username/projects/project/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined 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 1810c4ac704bc..7acf640860c65 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,21 +56,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file1.ts: - {"fileName":"/users/username/projects/project/file1.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file2.ts: - {"fileName":"/users/username/projects/project/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined @@ -174,21 +174,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file1.ts: - {"fileName":"/users/username/projects/project/file1.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file2.ts: - {"fileName":"/users/username/projects/project/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined 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 cbe9d285d1f37..2d0eb07510e89 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,21 +51,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file1.ts: - {"fileName":"/users/username/projects/project/file1.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file2.ts: - {"fileName":"/users/username/projects/project/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined @@ -152,21 +152,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file1.ts: - {"fileName":"/users/username/projects/project/file1.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file2.ts: - {"fileName":"/users/username/projects/project/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined 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 de1553bf81979..0a1d182a0cf76 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,21 +51,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file1.ts: - {"fileName":"/users/username/projects/project/file1.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file2.ts: - {"fileName":"/users/username/projects/project/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined @@ -152,21 +152,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file1.ts: - {"fileName":"/users/username/projects/project/file1.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file2.ts: - {"fileName":"/users/username/projects/project/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/incremental/tsbuildinfo-has-error.js b/tests/baselines/reference/tscWatch/incremental/tsbuildinfo-has-error.js index 8a8d25e9d7c3f..1008526bf8ad8 100644 --- a/tests/baselines/reference/tscWatch/incremental/tsbuildinfo-has-error.js +++ b/tests/baselines/reference/tscWatch/incremental/tsbuildinfo-has-error.js @@ -48,19 +48,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /src/project/tsconfig.json: - {"fileName":"/src/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /src/project/main.ts: - {"fileName":"/src/project/main.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /src/project/node_modules/@types: - {"fileName":"/src/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /src/project: - {"directoryName":"/src/project"} + {} exitCode:: ExitStatus.undefined 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 0cc2dee3a0876..2ed47601df67a 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,21 +53,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/globals.d.ts: - {"fileName":"/users/username/projects/project/globals.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/index.ts: - {"fileName":"/users/username/projects/project/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined @@ -150,19 +150,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/index.ts: - {"fileName":"/users/username/projects/project/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/incremental/with---out-watch.js b/tests/baselines/reference/tscWatch/incremental/with---out-watch.js index 905226b85be4d..efed6bd5fcebd 100644 --- a/tests/baselines/reference/tscWatch/incremental/with---out-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/with---out-watch.js @@ -45,21 +45,21 @@ No shapes updated in the builder:: WatchedFiles:: /users/username/projects/project/tsconfig.json: - {"fileName":"/users/username/projects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file1.ts: - {"fileName":"/users/username/projects/project/file1.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/file2.ts: - {"fileName":"/users/username/projects/project/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /users/username/projects/project/node_modules/@types: - {"fileName":"/users/username/projects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /users/username/projects/project: - {"directoryName":"/users/username/projects/project"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/moduleResolution/diagnostics-from-cache.js b/tests/baselines/reference/tscWatch/moduleResolution/diagnostics-from-cache.js index 6600ce5333e1f..4297d45a262b8 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/diagnostics-from-cache.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/diagnostics-from-cache.js @@ -62,21 +62,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/index.ts: - {"fileName":"/user/username/projects/myproject/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/package.json: - {"fileName":"/user/username/projects/myproject/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 05e00afe066f1..d424eb6aae7a7 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 @@ -100,27 +100,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/src/tsconfig.json: - {"fileName":"/user/username/projects/myproject/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: - {"fileName":"/user/username/projects/myproject/src/fileA.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"fileName":"/user/username/projects/myproject/src/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/package.json: - {"fileName":"/user/username/projects/myproject/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/node_modules/@types: - {"fileName":"/user/username/projects/myproject/src/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} exitCode:: ExitStatus.undefined @@ -207,29 +207,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/src/tsconfig.json: - {"fileName":"/user/username/projects/myproject/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: - {"fileName":"/user/username/projects/myproject/src/fileA.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"fileName":"/user/username/projects/myproject/src/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/package.json: - {"fileName":"/user/username/projects/myproject/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/node_modules/@types: - {"fileName":"/user/username/projects/myproject/src/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/fileb.mjs: - {"fileName":"/user/username/projects/myproject/src/fileB.mjs","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} exitCode:: ExitStatus.undefined @@ -313,27 +313,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/src/tsconfig.json: - {"fileName":"/user/username/projects/myproject/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: - {"fileName":"/user/username/projects/myproject/src/fileA.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"fileName":"/user/username/projects/myproject/src/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/package.json: - {"fileName":"/user/username/projects/myproject/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/node_modules/@types: - {"fileName":"/user/username/projects/myproject/src/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} exitCode:: ExitStatus.undefined @@ -426,31 +426,31 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/src/tsconfig.json: - {"fileName":"/user/username/projects/myproject/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: - {"fileName":"/user/username/projects/myproject/src/fileA.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"fileName":"/user/username/projects/myproject/src/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/package.json: - {"fileName":"/user/username/projects/myproject/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/node_modules/@types: - {"fileName":"/user/username/projects/myproject/src/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/fileb.mjs: - {"fileName":"/user/username/projects/myproject/src/fileB.mjs","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/package.json: - {"fileName":"/user/username/projects/package.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} exitCode:: ExitStatus.undefined @@ -520,29 +520,29 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/src/tsconfig.json: - {"fileName":"/user/username/projects/myproject/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: - {"fileName":"/user/username/projects/myproject/src/fileA.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"fileName":"/user/username/projects/myproject/src/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/package.json: - {"fileName":"/user/username/projects/myproject/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/node_modules/@types: - {"fileName":"/user/username/projects/myproject/src/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/fileb.mjs: - {"fileName":"/user/username/projects/myproject/src/fileB.mjs","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} exitCode:: ExitStatus.undefined @@ -610,31 +610,31 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/src/tsconfig.json: - {"fileName":"/user/username/projects/myproject/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: - {"fileName":"/user/username/projects/myproject/src/fileA.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"fileName":"/user/username/projects/myproject/src/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/package.json: - {"fileName":"/user/username/projects/myproject/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/node_modules/@types: - {"fileName":"/user/username/projects/myproject/src/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/fileb.mjs: - {"fileName":"/user/username/projects/myproject/src/fileB.mjs","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/package.json: - {"fileName":"/user/username/projects/package.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} exitCode:: ExitStatus.undefined 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 08d9d94536179..b4d17ad0ea21f 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 @@ -107,29 +107,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/src/tsconfig.json: - {"fileName":"/user/username/projects/myproject/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: - {"fileName":"/user/username/projects/myproject/src/fileA.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/fileb.mjs: - {"fileName":"/user/username/projects/myproject/src/fileB.mjs","pollingInterval":500} + {"pollingInterval":500} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"fileName":"/user/username/projects/myproject/src/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/package.json: - {"fileName":"/user/username/projects/myproject/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/node_modules/@types: - {"fileName":"/user/username/projects/myproject/src/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} exitCode:: ExitStatus.undefined @@ -213,27 +213,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/src/tsconfig.json: - {"fileName":"/user/username/projects/myproject/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: - {"fileName":"/user/username/projects/myproject/src/fileA.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"fileName":"/user/username/projects/myproject/src/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/package.json: - {"fileName":"/user/username/projects/myproject/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/node_modules/@types: - {"fileName":"/user/username/projects/myproject/src/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} exitCode:: ExitStatus.undefined @@ -320,29 +320,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/src/tsconfig.json: - {"fileName":"/user/username/projects/myproject/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: - {"fileName":"/user/username/projects/myproject/src/fileA.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"fileName":"/user/username/projects/myproject/src/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/package.json: - {"fileName":"/user/username/projects/myproject/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/node_modules/@types: - {"fileName":"/user/username/projects/myproject/src/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/fileb.mjs: - {"fileName":"/user/username/projects/myproject/src/fileB.mjs","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} exitCode:: ExitStatus.undefined @@ -417,31 +417,31 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/src/tsconfig.json: - {"fileName":"/user/username/projects/myproject/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: - {"fileName":"/user/username/projects/myproject/src/fileA.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"fileName":"/user/username/projects/myproject/src/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/package.json: - {"fileName":"/user/username/projects/myproject/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/node_modules/@types: - {"fileName":"/user/username/projects/myproject/src/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/fileb.mjs: - {"fileName":"/user/username/projects/myproject/src/fileB.mjs","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/package.json: - {"fileName":"/user/username/projects/package.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} exitCode:: ExitStatus.undefined @@ -519,27 +519,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/src/tsconfig.json: - {"fileName":"/user/username/projects/myproject/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: - {"fileName":"/user/username/projects/myproject/src/fileA.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"fileName":"/user/username/projects/myproject/src/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/package.json: - {"fileName":"/user/username/projects/myproject/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/node_modules/@types: - {"fileName":"/user/username/projects/myproject/src/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} exitCode:: ExitStatus.undefined @@ -632,31 +632,31 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/src/tsconfig.json: - {"fileName":"/user/username/projects/myproject/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: - {"fileName":"/user/username/projects/myproject/src/fileA.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"fileName":"/user/username/projects/myproject/src/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/package.json: - {"fileName":"/user/username/projects/myproject/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/node_modules/@types: - {"fileName":"/user/username/projects/myproject/src/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/fileb.mjs: - {"fileName":"/user/username/projects/myproject/src/fileB.mjs","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/package.json: - {"fileName":"/user/username/projects/package.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} 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 c3bc85030b2ad..faf85a779d441 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 @@ -103,37 +103,37 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/build/index.d.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/build/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/build/const.d.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/build/const.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/node_modules: - {"fileName":"/user/username/projects/myproject/packages/pkg1/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/pkg2/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/pkg1/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg2: - {"directoryName":"/user/username/projects/myproject/packages/pkg2"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/packages/pkg1: - {"directoryName":"/user/username/projects/myproject/packages/pkg1"} + {} exitCode:: ExitStatus.undefined @@ -207,33 +207,33 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/node_modules: - {"fileName":"/user/username/projects/myproject/packages/pkg1/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/pkg2/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/pkg1/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/pkg2/build/other.d.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/build/other.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/packages/pkg1: - {"directoryName":"/user/username/projects/myproject/packages/pkg1"} + {} exitCode:: ExitStatus.undefined @@ -310,37 +310,37 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/pkg1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/index.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg1/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/node_modules: - {"fileName":"/user/username/projects/myproject/packages/pkg1/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/pkg2/package.json: - {"fileName":"/user/username/projects/myproject/packages/pkg2/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/pkg1/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/pkg2/build/index.d.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/build/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/build/const.d.ts: - {"fileName":"/user/username/projects/myproject/packages/pkg2/build/const.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/packages/pkg1: - {"directoryName":"/user/username/projects/myproject/packages/pkg1"} + {} /user/username/projects/myproject/packages/pkg2: - {"directoryName":"/user/username/projects/myproject/packages/pkg2"} + {} exitCode:: ExitStatus.undefined 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 1a8aa1657c94b..691f54f23e647 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,21 +56,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /project/tsconfig.json: - {"fileName":"/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /project/src/deps.d.ts: - {"fileName":"/project/src/deps.d.ts","pollingInterval":250} + {"pollingInterval":250} /project/src/index.ts: - {"fileName":"/project/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2020.full.d.ts: - {"fileName":"/a/lib/lib.es2020.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /project/node_modules/@types: - {"fileName":"/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /project: - {"directoryName":"/project"} + {} exitCode:: ExitStatus.undefined @@ -112,21 +112,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /project/tsconfig.json: - {"fileName":"/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /project/src/deps.d.ts: - {"fileName":"/project/src/deps.d.ts","pollingInterval":250} + {"pollingInterval":250} /project/src/index.ts: - {"fileName":"/project/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2020.full.d.ts: - {"fileName":"/a/lib/lib.es2020.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /project/node_modules/@types: - {"fileName":"/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /project: - {"directoryName":"/project"} + {} exitCode:: ExitStatus.undefined 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 d1e4417238d8d..788544a8a4d75 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,19 +60,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/app.ts: - {"fileName":"/a/b/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 15a3e8bd3fa82..82b783389c723 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,19 +66,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/app.ts: - {"fileName":"/a/b/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -136,19 +136,19 @@ No shapes updated in the builder:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/app.ts: - {"fileName":"/a/b/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 f479de950bcce..c0b908dcd9b68 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,19 +55,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/app.ts: - {"fileName":"/a/b/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 65462ae84baab..9c3f6434d4a95 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,19 +45,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/app.ts: - {"fileName":"/a/b/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -103,19 +103,19 @@ No shapes updated in the builder:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/app.ts: - {"fileName":"/a/b/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -151,19 +151,19 @@ No shapes updated in the builder:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/app.ts: - {"fileName":"/a/b/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} 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 4f47cd5f54f3c..5cf2529fec089 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,17 +45,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /tsconfig.json: - {"fileName":"/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a.ts: - {"fileName":"/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /: - {"directoryName":""} + {} exitCode:: ExitStatus.undefined @@ -99,17 +99,17 @@ No shapes updated in the builder:: WatchedFiles:: /tsconfig.json: - {"fileName":"/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a.ts: - {"fileName":"/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /: - {"directoryName":""} + {} exitCode:: ExitStatus.undefined @@ -144,17 +144,17 @@ No shapes updated in the builder:: WatchedFiles:: /tsconfig.json: - {"fileName":"/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a.ts: - {"fileName":"/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /: - {"directoryName":""} + {} exitCode:: ExitStatus.undefined 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 22d57ffd06393..08228362eee56 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,19 +45,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -100,21 +100,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 9be0097c5bedf..b6820a8136a35 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,15 +47,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/file1.ts: - {"fileName":"/a/b/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined @@ -100,11 +100,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/file1.ts: - {"fileName":"/a/b/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile.ts: - {"fileName":"/a/b/moduleFile.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 2e7f67fdcec40..8ac1c47123a8a 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,13 +48,13 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -101,15 +101,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/b/f2.ts: - {"fileName":"/a/b/f2.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 4ef78e41a9881..e5153a58cc5d5 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,19 +45,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -100,21 +100,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/b/f2.ts: - {"fileName":"/a/b/f2.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 48b958db8510f..c3f54c618b891 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,21 +45,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/project/tsconfig.json: - {"fileName":"/user/username/projects/myproject/Project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/project/file1.ts: - {"fileName":"/user/username/projects/myproject/Project/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/project/node_modules/@types: - {"fileName":"/user/username/projects/myproject/Project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/project: - {"directoryName":"/user/username/projects/myproject/project"} + {} exitCode:: ExitStatus.undefined @@ -102,23 +102,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/project/tsconfig.json: - {"fileName":"/user/username/projects/myproject/Project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/project/file1.ts: - {"fileName":"/user/username/projects/myproject/Project/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/project/node_modules/@types: - {"fileName":"/user/username/projects/myproject/Project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/project/file2.ts: - {"fileName":"/user/username/projects/myproject/Project/file2.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/project: - {"directoryName":"/user/username/projects/myproject/project"} + {} exitCode:: ExitStatus.undefined 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 c9d771a21a328..ad267c4268688 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,13 +45,13 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/A/B/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/app.ts: - {"fileName":"/A/B/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/A/B/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 24c9dc715570f..762567c6c8db0 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,15 +51,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/f2.ts: - {"fileName":"/a/b/f2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -105,15 +105,15 @@ No shapes updated in the builder:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/f2.ts: - {"fileName":"/a/b/f2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 1d1e3a97eda54..d2ff57657c51f 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/change-module-to-none.js +++ b/tests/baselines/reference/tscWatch/programUpdates/change-module-to-none.js @@ -46,19 +46,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -105,19 +105,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 6f83238be91a8..198d243273d31 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 @@ -57,11 +57,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/f2.ts: - {"fileName":"/a/b/f2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -141,13 +141,13 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/f2.ts: - {"fileName":"/a/b/f2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/c/f3.ts: - {"fileName":"/a/c/f3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 bc7172787e81b..b57fadf11725a 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,17 +57,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/c/tsconfig.json: - {"fileName":"/a/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/c/f2.ts: - {"fileName":"/a/c/f2.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/c/f3.ts: - {"fileName":"/a/c/f3.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/c/node_modules/@types: - {"fileName":"/a/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 8ce89bda343d1..0c83d47340764 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/config-file-is-deleted.js +++ b/tests/baselines/reference/tscWatch/programUpdates/config-file-is-deleted.js @@ -51,21 +51,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/f2.ts: - {"fileName":"/a/b/f2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -90,21 +90,21 @@ Output:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/f2.ts: - {"fileName":"/a/b/f2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.DiagnosticsPresent_OutputsSkipped 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 c5b9c128afc0b..57787e790f464 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,19 +54,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /src/tsconfig.json: - {"fileName":"/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /src/app.ts: - {"fileName":"/src/app.ts","pollingInterval":250} + {"pollingInterval":250} /compiler/lib.es5.d.ts: - {"fileName":"/compiler/lib.es5.d.ts","pollingInterval":250} + {"pollingInterval":250} /src/node_modules/@types: - {"fileName":"/src/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /src: - {"directoryName":"/src"} + {} exitCode:: ExitStatus.undefined @@ -109,21 +109,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /src/tsconfig.json: - {"fileName":"/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /src/app.ts: - {"fileName":"/src/app.ts","pollingInterval":250} + {"pollingInterval":250} /compiler/lib.es5.d.ts: - {"fileName":"/compiler/lib.es5.d.ts","pollingInterval":250} + {"pollingInterval":250} /src/node_modules/@types: - {"fileName":"/src/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /compiler/lib.es2015.promise.d.ts: - {"fileName":"/compiler/lib.es2015.promise.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /src: - {"directoryName":"/src"} + {} exitCode:: ExitStatus.undefined 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 524d0fbf0fd55..4d771c7b10bb2 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 @@ -63,21 +63,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/f1.ts: - {"fileName":"/user/username/projects/myproject/f1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/f2.ts: - {"fileName":"/user/username/projects/myproject/f2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -192,23 +192,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/f1.ts: - {"fileName":"/user/username/projects/myproject/f1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/f2.ts: - {"fileName":"/user/username/projects/myproject/f2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/new-file.ts: - {"fileName":"/user/username/projects/myproject/new-file.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -310,23 +310,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/f1.ts: - {"fileName":"/user/username/projects/myproject/f1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/f2.ts: - {"fileName":"/user/username/projects/myproject/f2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/new-file.ts: - {"fileName":"/user/username/projects/myproject/new-file.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 080b8440f40d9..522602435e274 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,21 +60,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/c/f1.ts: - {"fileName":"/a/b/c/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/d/f2.ts: - {"fileName":"/a/b/d/f2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/create-watch-without-config-file.js b/tests/baselines/reference/tscWatch/programUpdates/create-watch-without-config-file.js index c24a8fc88e321..98d5040745594 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/create-watch-without-config-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/create-watch-without-config-file.js @@ -61,17 +61,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/c/app.ts: - {"fileName":"/a/b/c/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/c/module.d.ts: - {"fileName":"/a/b/c/module.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure-2.js b/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure-2.js index a10797617e9a4..5df14e295f4e7 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure-2.js +++ b/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure-2.js @@ -54,13 +54,13 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/f2.ts: - {"fileName":"/a/b/f2.ts","pollingInterval":250} + {"pollingInterval":250} /a/c/f3.ts: - {"fileName":"/a/c/f3.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -150,17 +150,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/c/f3.ts: - {"fileName":"/a/c/f3.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure.js b/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure.js index 233d8635a3ebe..45be24ea2015e 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure.js +++ b/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure.js @@ -54,13 +54,13 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/f2.ts: - {"fileName":"/a/b/f2.ts","pollingInterval":250} + {"pollingInterval":250} /a/c/f3.ts: - {"fileName":"/a/c/f3.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -149,15 +149,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined 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 ad1ce86ffdbdb..f51b912233392 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,15 +57,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -114,19 +114,19 @@ No shapes updated in the builder:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/b/second.tsconfig.json: - {"fileName":"/a/b/second.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/first.tsconfig.json: - {"fileName":"/a/b/first.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -177,19 +177,19 @@ No shapes updated in the builder:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/b/second.tsconfig.json: - {"fileName":"/a/b/second.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/first.tsconfig.json: - {"fileName":"/a/b/first.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -238,19 +238,19 @@ No shapes updated in the builder:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/b/second.tsconfig.json: - {"fileName":"/a/b/second.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/first.tsconfig.json: - {"fileName":"/a/b/first.tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -291,15 +291,15 @@ No shapes updated in the builder:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 57d7c816fcea1..043ff1eda9909 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,15 +51,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/f2.ts: - {"fileName":"/a/b/f2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -112,15 +112,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/b/f2.ts: - {"fileName":"/a/b/f2.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 65a69cb7d6087..39c6e5bed2a92 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,21 +57,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 1dd28f2ed0021..7a33200b6c214 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/handle-recreated-files-correctly.js +++ b/tests/baselines/reference/tscWatch/programUpdates/handle-recreated-files-correctly.js @@ -57,21 +57,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -124,21 +124,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -181,19 +181,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -239,21 +239,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 979458664886f..86c3a03416cf9 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 @@ -53,11 +53,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonfile2.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -105,11 +105,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 b97d4db4b0731..b9b4bf2d1b380 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,19 +47,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/app.ts: - {"fileName":"/a/b/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/non-existing-directories-listed-in-config-file-input-array-should-be-able-to-handle-@types-if-input-file-list-is-empty.js b/tests/baselines/reference/tscWatch/programUpdates/non-existing-directories-listed-in-config-file-input-array-should-be-able-to-handle-@types-if-input-file-list-is-empty.js index 8466d2e62d3c5..3cfe2cfe8fb3f 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/non-existing-directories-listed-in-config-file-input-array-should-be-able-to-handle-@types-if-input-file-list-is-empty.js +++ b/tests/baselines/reference/tscWatch/programUpdates/non-existing-directories-listed-in-config-file-input-array-should-be-able-to-handle-@types-if-input-file-list-is-empty.js @@ -50,13 +50,13 @@ No shapes updated in the builder:: WatchedFiles:: /a/tsconfig.json: - {"fileName":"/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a/node_modules/@types: - {"directoryName":"/a/node_modules/@types"} + {} exitCode:: ExitStatus.undefined 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 f1bf8e3f92fa3..d906f6ddfce3b 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 @@ -44,15 +44,15 @@ No shapes updated in the builder:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/b/app: - {"fileName":"/a/b/app","pollingInterval":500} + {"pollingInterval":500} /a/b/test: - {"fileName":"/a/b/test","pollingInterval":500} + {"pollingInterval":500} /a/b/something: - {"fileName":"/a/b/something","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 f44279fbd6495..4cc5fd6468daa 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,21 +51,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1.ts: - {"fileName":"/a/b/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile.ts: - {"fileName":"/a/b/moduleFile.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -126,25 +126,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1.ts: - {"fileName":"/a/b/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/b/modulefile: - {"fileName":"/a/b/moduleFile","pollingInterval":500} + {"pollingInterval":500} /a/b/modulefile1.ts: - {"fileName":"/a/b/moduleFile1.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /a/b: - {"directoryName":"/a/b"} + {} FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -193,21 +193,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1.ts: - {"fileName":"/a/b/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/b/modulefile.ts: - {"fileName":"/a/b/moduleFile.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 af64ecde0727f..06375aa9968d2 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,11 +48,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/file1.ts: - {"fileName":"/a/b/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile.ts: - {"fileName":"/a/b/moduleFile.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -114,15 +114,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/file1.ts: - {"fileName":"/a/b/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined @@ -162,11 +162,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/file1.ts: - {"fileName":"/a/b/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/modulefile.ts: - {"fileName":"/a/b/moduleFile.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 4166f16b7541b..9475250ea4672 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 @@ -56,21 +56,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/b.ts: - {"fileName":"/user/username/projects/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -125,21 +125,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/b.ts: - {"fileName":"/user/username/projects/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 ef020d04628d3..f70bf62e844ee 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 @@ -52,21 +52,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -123,21 +123,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 816d00fe07eef..7ba410cb66613 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 @@ -45,21 +45,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/tsconfig.json: - {"fileName":"/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/src/app.ts: - {"fileName":"/a/src/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/node_modules/@types: - {"fileName":"/a/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/notexistingfolder: - {"fileName":"/a/notexistingfolder","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/src: - {"directoryName":"/a/src"} + {} exitCode:: ExitStatus.undefined 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 04080d6345503..b9abf94d54897 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 @@ -61,15 +61,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile3.ts: - {"fileName":"/a/b/commonfile3.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 e3fc789404c06..2de1c576324bd 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 @@ -178,23 +178,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -233,23 +233,23 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -313,25 +313,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/file3.ts: - {"fileName":"/user/username/projects/myproject/src/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -357,25 +357,25 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/file3.ts: - {"fileName":"/user/username/projects/myproject/src/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} 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 620c42fa2a32c..1b5477c76ad6d 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 @@ -178,23 +178,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -233,23 +233,23 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -313,25 +313,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/file3.ts: - {"fileName":"/user/username/projects/myproject/src/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -357,25 +357,25 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/file3.ts: - {"fileName":"/user/username/projects/myproject/src/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} 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 6800711e1a42f..bacc4604a8f0a 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 @@ -178,23 +178,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -225,23 +225,23 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -305,25 +305,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/file3.ts: - {"fileName":"/user/username/projects/myproject/src/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -345,25 +345,25 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/file3.ts: - {"fileName":"/user/username/projects/myproject/src/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} 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 7b96140fceb23..9cffda06a8a5e 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 @@ -176,23 +176,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -220,23 +220,23 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -299,25 +299,25 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/file3.ts: - {"fileName":"/user/username/projects/myproject/src/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -351,25 +351,25 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/file3.ts: - {"fileName":"/user/username/projects/myproject/src/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} 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 1b21f2ca83fcc..b4d1ed75c1fb1 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 @@ -178,23 +178,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -233,23 +233,23 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -313,25 +313,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/file3.ts: - {"fileName":"/user/username/projects/myproject/src/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -357,25 +357,25 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/file3.ts: - {"fileName":"/user/username/projects/myproject/src/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} 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 1b80ab46e46ad..aa5d9298a3528 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 @@ -178,23 +178,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -225,23 +225,23 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -305,25 +305,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/file3.ts: - {"fileName":"/user/username/projects/myproject/src/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -345,25 +345,25 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/file1.ts: - {"fileName":"/user/username/projects/myproject/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"fileName":"/a/lib/lib.es2016.full.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/file3.ts: - {"fileName":"/user/username/projects/myproject/src/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} 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 44ce93179b7b6..a31dde81c0ad3 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,21 +59,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1.ts: - {"fileName":"/a/b/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/module1.ts: - {"fileName":"/a/b/node_modules/module1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b/node_modules: - {"directoryName":"/a/b/node_modules"} + {} exitCode:: ExitStatus.undefined @@ -121,19 +121,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/file1.ts: - {"fileName":"/a/b/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/module1.ts: - {"fileName":"/a/module1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /a/b: - {"directoryName":"/a/b"} + {} FsWatchesRecursive:: 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 bb0c712f75dd8..1be76002e0539 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,15 +60,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -125,15 +125,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -185,13 +185,13 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/should-support-files-without-extensions.js b/tests/baselines/reference/tscWatch/programUpdates/should-support-files-without-extensions.js index b365633a6644f..23f5e297712de 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/should-support-files-without-extensions.js +++ b/tests/baselines/reference/tscWatch/programUpdates/should-support-files-without-extensions.js @@ -42,9 +42,9 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/compile: - {"fileName":"/a/compile","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 83192058d49be..c0d8c4c2bee14 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,21 +62,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/shouldnt-report-error-about-unused-function-incorrectly-when-file-changes-from-global-to-module.js b/tests/baselines/reference/tscWatch/programUpdates/shouldnt-report-error-about-unused-function-incorrectly-when-file-changes-from-global-to-module.js index 7675045eb4526..88fa37654e374 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/shouldnt-report-error-about-unused-function-incorrectly-when-file-changes-from-global-to-module.js +++ b/tests/baselines/reference/tscWatch/programUpdates/shouldnt-report-error-about-unused-function-incorrectly-when-file-changes-from-global-to-module.js @@ -47,9 +47,9 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/file.ts: - {"fileName":"/a/b/file.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -102,9 +102,9 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/file.ts: - {"fileName":"/a/b/file.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 e14955f6cc7ca..b7f7ad68ab8d0 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 @@ -53,11 +53,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/c/f2.ts: - {"fileName":"/a/c/f2.ts","pollingInterval":250} + {"pollingInterval":250} /a/d/f3.ts: - {"fileName":"/a/d/f3.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -112,16 +112,16 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/c/f2.ts: - {"fileName":"/a/c/f2.ts","pollingInterval":250} - {"fileName":"/a/c/f2.ts","pollingInterval":250} + {"pollingInterval":250} + {"pollingInterval":250} /a/d/f3.ts: - {"fileName":"/a/d/f3.ts","pollingInterval":250} - {"fileName":"/a/d/f3.ts","pollingInterval":250} + {"pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} + {"pollingInterval":250} /a/b/f1.ts: - {"fileName":"/a/b/f1.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 d5390acf149ae..f2b7cb539d4ce 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,21 +51,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/app.ts: - {"fileName":"/a/b/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types/node/index.d.ts: - {"fileName":"/a/b/node_modules/@types/node/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a/b/node_modules: - {"directoryName":"/a/b/node_modules"} + {} /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 d6571f1f2e3e3..803a533273a19 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 @@ -65,19 +65,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /tsconfig.json: - {"fileName":"/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a.ts: - {"fileName":"/a.ts","pollingInterval":250} + {"pollingInterval":250} /b.ts: - {"fileName":"/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /: - {"directoryName":""} + {} exitCode:: ExitStatus.undefined @@ -141,19 +141,19 @@ No shapes updated in the builder:: WatchedFiles:: /tsconfig.json: - {"fileName":"/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a.ts: - {"fileName":"/a.ts","pollingInterval":250} + {"pollingInterval":250} /b.ts: - {"fileName":"/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /: - {"directoryName":""} + {} exitCode:: ExitStatus.undefined @@ -190,19 +190,19 @@ No shapes updated in the builder:: WatchedFiles:: /tsconfig.json: - {"fileName":"/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a.ts: - {"fileName":"/a.ts","pollingInterval":250} + {"pollingInterval":250} /b.ts: - {"fileName":"/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /: - {"directoryName":""} + {} exitCode:: ExitStatus.undefined 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 b95366558d2e8..95e0ee0e07ca4 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,17 +51,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /tsconfig.json: - {"fileName":"/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a.ts: - {"fileName":"/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /: - {"directoryName":""} + {} exitCode:: ExitStatus.undefined @@ -113,17 +113,17 @@ No shapes updated in the builder:: WatchedFiles:: /tsconfig.json: - {"fileName":"/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a.ts: - {"fileName":"/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /: - {"directoryName":""} + {} exitCode:: ExitStatus.undefined 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 d49eea56c629a..a512881d4ae25 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 @@ -46,19 +46,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/index.tsx: - {"fileName":"/user/username/projects/myproject/index.tsx","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -95,19 +95,19 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/index.tsx: - {"fileName":"/user/username/projects/myproject/index.tsx","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 c29e44a58d755..863261552004c 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 @@ -52,21 +52,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -123,21 +123,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -181,21 +181,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -242,21 +242,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 9412986369c3c..ace10f9801937 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 @@ -55,21 +55,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -115,21 +115,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -170,21 +170,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -235,21 +235,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -290,21 +290,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 488bb2415cd91..6ead32f11b18b 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 @@ -61,11 +61,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -114,11 +114,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -175,11 +175,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 4f797d83b2383..2a5c742a649dd 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 @@ -56,11 +56,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -108,11 +108,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -163,11 +163,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 477651d48cf97..95789ac46cb14 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 @@ -56,11 +56,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -108,11 +108,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -163,11 +163,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 93e433a34a981..1bfeadc1ca36a 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 @@ -58,11 +58,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -107,11 +107,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -169,11 +169,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 65d2b54aef144..a51a33889bc94 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 @@ -53,11 +53,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -101,11 +101,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -157,11 +157,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 a65540016c5e6..5bb3537ed6c7d 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 @@ -53,11 +53,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -101,11 +101,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -157,11 +157,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 ce71c8e888fa1..63c61c44f08ce 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 @@ -47,19 +47,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -124,21 +124,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/b.ts: - {"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -177,19 +177,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 2bbd474f5792b..06180d79c0633 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,19 +51,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /tsconfig.json: - {"fileName":"/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a.ts: - {"fileName":"/a.ts","pollingInterval":250} + {"pollingInterval":250} /b.ts: - {"fileName":"/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /: - {"directoryName":""} + {} exitCode:: ExitStatus.undefined @@ -128,19 +128,19 @@ No shapes updated in the builder:: WatchedFiles:: /tsconfig.json: - {"fileName":"/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a.ts: - {"fileName":"/a.ts","pollingInterval":250} + {"pollingInterval":250} /b.ts: - {"fileName":"/b.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /: - {"directoryName":""} + {} exitCode:: ExitStatus.undefined 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 e8849a90830dc..5605a5bbdcfd4 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 @@ -59,19 +59,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -115,19 +115,19 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 80b6a9c592175..50d24d6d4864b 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 @@ -46,19 +46,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -102,19 +102,19 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -154,19 +154,19 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -201,19 +201,19 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 410db4b1367bf..0885277fe0a84 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 @@ -53,23 +53,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/data.json: - {"fileName":"/user/username/projects/myproject/data.json","pollingInterval":500} + {"pollingInterval":500} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -112,24 +112,24 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/data.json: - {"fileName":"/user/username/projects/myproject/data.json","pollingInterval":500} - {"fileName":"/user/username/projects/myproject/data.json","pollingInterval":250} + {"pollingInterval":500} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 6cf84cd6877f2..11e21c59e019b 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 @@ -45,19 +45,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /home/username/project/tsconfig.json: - {"fileName":"/home/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /home/username/project/src/file1.ts: - {"fileName":"/home/username/project/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /home/username/project/node_modules/@types: - {"fileName":"/home/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /home/username/project: - {"directoryName":"/home/username/project"} + {} exitCode:: ExitStatus.undefined @@ -98,19 +98,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /home/username/project/tsconfig.json: - {"fileName":"/home/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /home/username/project/node_modules/@types: - {"fileName":"/home/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /home/username/project/src/file2.ts: - {"fileName":"/home/username/project/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /home/username/project: - {"directoryName":"/home/username/project"} + {} exitCode:: ExitStatus.undefined 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 2c6d1ff7e912d..20a245b1213ac 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/when-creating-extensionless-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/when-creating-extensionless-file.js @@ -56,19 +56,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/index.ts: - {"fileName":"/user/username/projects/myproject/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -93,19 +93,19 @@ Synchronizing program WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/index.ts: - {"fileName":"/user/username/projects/myproject/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 27c0214047124..f145ef31c42cc 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 @@ -66,23 +66,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/client/folder1/module1.ts: - {"fileName":"/user/username/projects/myproject/client/folder1/module1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/client/linktofolder2/module2.ts: - {"fileName":"/user/username/projects/myproject/client/linktofolder2/module2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/client: - {"directoryName":"/user/username/projects/myproject/client"} + {} /user/username/projects/myproject/folder2: - {"directoryName":"/user/username/projects/myproject/folder2"} + {} exitCode:: ExitStatus.undefined @@ -147,25 +147,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/client/folder1/module1.ts: - {"fileName":"/user/username/projects/myproject/client/folder1/module1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/client/linktofolder2/module2.ts: - {"fileName":"/user/username/projects/myproject/client/linktofolder2/module2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/client/linktofolder2/module3.ts: - {"fileName":"/user/username/projects/myproject/client/linktofolder2/module3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/client: - {"directoryName":"/user/username/projects/myproject/client"} + {} /user/username/projects/myproject/folder2: - {"directoryName":"/user/username/projects/myproject/folder2"} + {} exitCode:: ExitStatus.undefined 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 c6e64a7b34dd0..38b91ce7bd9fb 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 @@ -78,29 +78,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/projects/project2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/class1.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class1.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/class2.ts: - {"fileName":"/user/username/projects/myproject/projects/project2/class2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/project2/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: - {"directoryName":"/user/username/projects/myproject/projects/project1"} + {} /user/username/projects/myproject/projects/project2: - {"directoryName":"/user/username/projects/myproject/projects/project2"} + {} exitCode:: ExitStatus.undefined @@ -208,31 +208,31 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/projects/project2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/class1.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class1.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/class2.ts: - {"fileName":"/user/username/projects/myproject/projects/project2/class2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/project2/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/project1/class3.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class3.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: - {"directoryName":"/user/username/projects/myproject/projects/project1"} + {} /user/username/projects/myproject/projects/project2: - {"directoryName":"/user/username/projects/myproject/projects/project2"} + {} exitCode:: ExitStatus.undefined @@ -286,31 +286,31 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/projects/project2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/class1.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class1.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/class2.ts: - {"fileName":"/user/username/projects/myproject/projects/project2/class2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/project2/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/project1/class3.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class3.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: - {"directoryName":"/user/username/projects/myproject/projects/project1"} + {} /user/username/projects/myproject/projects/project2: - {"directoryName":"/user/username/projects/myproject/projects/project2"} + {} exitCode:: ExitStatus.undefined @@ -384,31 +384,31 @@ Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myprojec WatchedFiles:: /user/username/projects/myproject/projects/project2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/class1.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class1.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/class2.ts: - {"fileName":"/user/username/projects/myproject/projects/project2/class2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/project2/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/project1/class3.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class3.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: - {"directoryName":"/user/username/projects/myproject/projects/project1"} + {} /user/username/projects/myproject/projects/project2: - {"directoryName":"/user/username/projects/myproject/projects/project2"} + {} exitCode:: ExitStatus.undefined @@ -465,31 +465,31 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/projects/project2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/class1.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class1.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/class2.ts: - {"fileName":"/user/username/projects/myproject/projects/project2/class2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/project2/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/project1/class3.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class3.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: - {"directoryName":"/user/username/projects/myproject/projects/project1"} + {} /user/username/projects/myproject/projects/project2: - {"directoryName":"/user/username/projects/myproject/projects/project2"} + {} exitCode:: ExitStatus.undefined @@ -585,31 +585,31 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/projects/project2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/class1.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class1.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/class2.ts: - {"fileName":"/user/username/projects/myproject/projects/project2/class2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/project2/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/project1/class3.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class3.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: - {"directoryName":"/user/username/projects/myproject/projects/project1"} + {} /user/username/projects/myproject/projects/project2: - {"directoryName":"/user/username/projects/myproject/projects/project2"} + {} exitCode:: ExitStatus.undefined 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 4b564de1611fd..ad61c71070b68 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 @@ -73,21 +73,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -131,21 +131,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -191,21 +191,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -255,21 +255,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -314,21 +314,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -369,21 +369,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -434,21 +434,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/b.d.ts: - {"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 eb86e16b5733e..b2d5fe243d097 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,15 +54,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -100,15 +100,15 @@ No shapes updated in the builder:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: diff --git a/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js b/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js index 674bec0450f3d..13170b2fa14e8 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js @@ -408,33 +408,33 @@ Dependencies for:: WatchedFiles:: /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.d.ts: - {"fileName":"/user/username/projects/sample1/core/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.d.ts: - {"fileName":"/user/username/projects/sample1/logic/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.d.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/node_modules/@types: - {"fileName":"/user/username/projects/sample1/tests/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/sample1/node_modules/@types: - {"fileName":"/user/username/projects/sample1/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -542,33 +542,33 @@ Output:: WatchedFiles:: /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.d.ts: - {"fileName":"/user/username/projects/sample1/core/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.d.ts: - {"fileName":"/user/username/projects/sample1/logic/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.d.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/node_modules/@types: - {"fileName":"/user/username/projects/sample1/tests/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/sample1/node_modules/@types: - {"fileName":"/user/username/projects/sample1/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -729,33 +729,33 @@ Dependencies for:: WatchedFiles:: /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.d.ts: - {"fileName":"/user/username/projects/sample1/core/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/index.d.ts: - {"fileName":"/user/username/projects/sample1/logic/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.d.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/node_modules/@types: - {"fileName":"/user/username/projects/sample1/tests/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/sample1/node_modules/@types: - {"fileName":"/user/username/projects/sample1/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined @@ -989,33 +989,33 @@ Dependencies for:: WatchedFiles:: /user/username/projects/sample1/tests/tsconfig.json: - {"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/tsconfig.json: - {"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/logic/tsconfig.json: - {"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/index.ts: - {"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/index.d.ts: - {"fileName":"/user/username/projects/sample1/core/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.d.ts: - {"fileName":"/user/username/projects/sample1/core/anotherModule.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/sample1/tests/node_modules/@types: - {"fileName":"/user/username/projects/sample1/tests/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/sample1/node_modules/@types: - {"fileName":"/user/username/projects/sample1/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/sample1/logic/decls/index.d.ts: - {"fileName":"/user/username/projects/sample1/logic/decls/index.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/sample1/core: - {"directoryName":"/user/username/projects/sample1/core"} + {} /user/username/projects/sample1/logic: - {"directoryName":"/user/username/projects/sample1/logic"} + {} exitCode:: ExitStatus.undefined 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 3a254f55bddb4..af88738f9803e 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 @@ -225,41 +225,41 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitivereferences/b"} - {"directoryName":"/user/username/projects/transitiveReferences/b"} + {} + {} /user/username/projects/transitivereferences/a: - {"directoryName":"/user/username/projects/transitivereferences/a"} - {"directoryName":"/user/username/projects/transitiveReferences/a"} + {} + {} /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} /user/username/projects/transitivereferences/c: - {"directoryName":"/user/username/projects/transitivereferences/c"} + {} exitCode:: ExitStatus.undefined @@ -392,41 +392,41 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitivereferences/b"} - {"directoryName":"/user/username/projects/transitiveReferences/b"} + {} + {} /user/username/projects/transitivereferences/a: - {"directoryName":"/user/username/projects/transitivereferences/a"} - {"directoryName":"/user/username/projects/transitiveReferences/a"} + {} + {} /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} /user/username/projects/transitivereferences/c: - {"directoryName":"/user/username/projects/transitivereferences/c"} + {} exitCode:: ExitStatus.undefined @@ -492,41 +492,41 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/nrefs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/nrefs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitivereferences/b"} - {"directoryName":"/user/username/projects/transitiveReferences/b"} + {} + {} /user/username/projects/transitivereferences/a: - {"directoryName":"/user/username/projects/transitivereferences/a"} - {"directoryName":"/user/username/projects/transitiveReferences/a"} + {} + {} /user/username/projects/transitivereferences/c: - {"directoryName":"/user/username/projects/transitivereferences/c"} + {} /user/username/projects/transitivereferences/nrefs: - {"directoryName":"/user/username/projects/transitiveReferences/nrefs"} + {} exitCode:: ExitStatus.undefined @@ -587,41 +587,41 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitivereferences/b"} - {"directoryName":"/user/username/projects/transitiveReferences/b"} + {} + {} /user/username/projects/transitivereferences/a: - {"directoryName":"/user/username/projects/transitivereferences/a"} - {"directoryName":"/user/username/projects/transitiveReferences/a"} + {} + {} /user/username/projects/transitivereferences/c: - {"directoryName":"/user/username/projects/transitivereferences/c"} + {} /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} exitCode:: ExitStatus.undefined @@ -682,42 +682,42 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/nrefs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/nrefs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitivereferences/b"} - {"directoryName":"/user/username/projects/transitiveReferences/b"} + {} + {} /user/username/projects/transitivereferences/a: - {"directoryName":"/user/username/projects/transitivereferences/a"} + {} /user/username/projects/transitivereferences/c: - {"directoryName":"/user/username/projects/transitivereferences/c"} + {} /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} /user/username/projects/transitivereferences/nrefs: - {"directoryName":"/user/username/projects/transitiveReferences/nrefs"} + {} exitCode:: ExitStatus.undefined @@ -770,38 +770,38 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitivereferences/b"} - {"directoryName":"/user/username/projects/transitiveReferences/b"} + {} + {} /user/username/projects/transitivereferences/a: - {"directoryName":"/user/username/projects/transitivereferences/a"} + {} /user/username/projects/transitivereferences/c: - {"directoryName":"/user/username/projects/transitivereferences/c"} + {} /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} exitCode:: ExitStatus.undefined @@ -859,33 +859,33 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/b/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitiveReferences/b"} + {} /user/username/projects/transitivereferences/c: - {"directoryName":"/user/username/projects/transitivereferences/c"} + {} /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} exitCode:: ExitStatus.undefined @@ -949,41 +949,41 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/a/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a/index.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitiveReferences/b"} - {"directoryName":"/user/username/projects/transitivereferences/b"} + {} + {} /user/username/projects/transitivereferences/c: - {"directoryName":"/user/username/projects/transitivereferences/c"} + {} /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} /user/username/projects/transitivereferences/a: - {"directoryName":"/user/username/projects/transitivereferences/a"} - {"directoryName":"/user/username/projects/transitiveReferences/a"} + {} + {} exitCode:: ExitStatus.undefined @@ -1047,40 +1047,40 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/a/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/a/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitiveReferences/b"} - {"directoryName":"/user/username/projects/transitivereferences/b"} + {} + {} /user/username/projects/transitivereferences/c: - {"directoryName":"/user/username/projects/transitivereferences/c"} + {} /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} /user/username/projects/transitivereferences/a: - {"directoryName":"/user/username/projects/transitiveReferences/a"} + {} exitCode:: ExitStatus.undefined @@ -1143,41 +1143,41 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/a/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a/index.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitiveReferences/b"} - {"directoryName":"/user/username/projects/transitivereferences/b"} + {} + {} /user/username/projects/transitivereferences/c: - {"directoryName":"/user/username/projects/transitivereferences/c"} + {} /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} /user/username/projects/transitivereferences/a: - {"directoryName":"/user/username/projects/transitiveReferences/a"} - {"directoryName":"/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 75a0658cf9a84..08a3e0bb70faa 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 @@ -225,37 +225,37 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitiveReferences/b"} + {} /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} /user/username/projects/transitivereferences/a: - {"directoryName":"/user/username/projects/transitiveReferences/a"} + {} exitCode:: ExitStatus.undefined @@ -388,37 +388,37 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitiveReferences/b"} + {} /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} /user/username/projects/transitivereferences/a: - {"directoryName":"/user/username/projects/transitiveReferences/a"} + {} exitCode:: ExitStatus.undefined @@ -484,37 +484,37 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/nrefs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/nrefs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitiveReferences/b"} + {} /user/username/projects/transitivereferences/nrefs: - {"directoryName":"/user/username/projects/transitiveReferences/nrefs"} + {} /user/username/projects/transitivereferences/a: - {"directoryName":"/user/username/projects/transitiveReferences/a"} + {} exitCode:: ExitStatus.undefined @@ -575,37 +575,37 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitiveReferences/b"} + {} /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} /user/username/projects/transitivereferences/a: - {"directoryName":"/user/username/projects/transitiveReferences/a"} + {} exitCode:: ExitStatus.undefined @@ -666,37 +666,37 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/nrefs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/nrefs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitiveReferences/b"} + {} /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} /user/username/projects/transitivereferences/nrefs: - {"directoryName":"/user/username/projects/transitiveReferences/nrefs"} + {} exitCode:: ExitStatus.undefined @@ -749,33 +749,33 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitiveReferences/b"} + {} /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} exitCode:: ExitStatus.undefined @@ -833,31 +833,31 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/b/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitiveReferences/b"} + {} /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} exitCode:: ExitStatus.undefined @@ -921,37 +921,37 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/a/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a/index.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitiveReferences/b"} + {} /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} /user/username/projects/transitivereferences/a: - {"directoryName":"/user/username/projects/transitiveReferences/a"} + {} exitCode:: ExitStatus.undefined @@ -1015,37 +1015,37 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/a/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/a/index.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitiveReferences/b"} + {} /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} /user/username/projects/transitivereferences/a: - {"directoryName":"/user/username/projects/transitiveReferences/a"} + {} exitCode:: ExitStatus.undefined @@ -1108,37 +1108,37 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/c/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/index.ts: - {"fileName":"/user/username/projects/transitiveReferences/c/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/c/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/a/tsconfig.json: - {"fileName":"/user/username/projects/transitiveReferences/a/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a/index.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a/index.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/transitivereferences: - {"directoryName":"/user/username/projects/transitiveReferences"} + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: - {"directoryName":"/user/username/projects/transitiveReferences/b"} + {} /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} /user/username/projects/transitivereferences/a: - {"directoryName":"/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 5a4b518a98499..e59416d41157c 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js @@ -249,29 +249,29 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.c.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.b.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.a.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.a.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c.ts: - {"fileName":"/user/username/projects/transitiveReferences/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} exitCode:: ExitStatus.undefined @@ -405,29 +405,29 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.c.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.b.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.a.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.a.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c.ts: - {"fileName":"/user/username/projects/transitiveReferences/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} exitCode:: ExitStatus.undefined @@ -493,29 +493,29 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.c.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.b.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.a.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.a.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c.ts: - {"fileName":"/user/username/projects/transitiveReferences/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/nrefs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/nrefs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/nrefs: - {"directoryName":"/user/username/projects/transitiveReferences/nrefs"} + {} exitCode:: ExitStatus.undefined @@ -576,29 +576,29 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.c.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.b.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.a.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.a.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c.ts: - {"fileName":"/user/username/projects/transitiveReferences/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} exitCode:: ExitStatus.undefined @@ -659,31 +659,31 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.c.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.b.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.a.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.a.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c.ts: - {"fileName":"/user/username/projects/transitiveReferences/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/nrefs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/nrefs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} /user/username/projects/transitivereferences/nrefs: - {"directoryName":"/user/username/projects/transitiveReferences/nrefs"} + {} exitCode:: ExitStatus.undefined @@ -736,27 +736,27 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.c.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.b.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.a.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.a.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c.ts: - {"fileName":"/user/username/projects/transitiveReferences/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} exitCode:: ExitStatus.undefined @@ -814,25 +814,25 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.c.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.b.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c.ts: - {"fileName":"/user/username/projects/transitiveReferences/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/b.ts: - {"fileName":"/user/username/projects/transitiveReferences/b.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} exitCode:: ExitStatus.undefined @@ -907,29 +907,29 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.c.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.b.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c.ts: - {"fileName":"/user/username/projects/transitiveReferences/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/tsconfig.a.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.a.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} exitCode:: ExitStatus.undefined @@ -993,29 +993,29 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.c.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.b.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c.ts: - {"fileName":"/user/username/projects/transitiveReferences/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/tsconfig.a.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.a.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a.ts: - {"fileName":"/user/username/projects/transitiveReferences/a.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} exitCode:: ExitStatus.undefined @@ -1079,29 +1079,29 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.c.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.b.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c.ts: - {"fileName":"/user/username/projects/transitiveReferences/c.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/transitivereferences/tsconfig.a.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.a.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} exitCode:: ExitStatus.undefined 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 0aed757be8309..d6fb8e845f3b4 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 @@ -236,29 +236,29 @@ Dependencies for:: WatchedFiles:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.c.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.b.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.a.json: - {"fileName":"/user/username/projects/transitiveReferences/tsconfig.a.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/c.ts: - {"fileName":"/user/username/projects/transitiveReferences/c.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/b.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/b.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/refs/a.d.ts: - {"fileName":"/user/username/projects/transitiveReferences/refs/a.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/transitivereferences/node_modules/@types: - {"fileName":"/user/username/projects/transitiveReferences/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: - {"directoryName":"/user/username/projects/transitiveReferences/refs"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js b/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js index ec5ba33068815..33b26e1a7fb8f 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js @@ -58,17 +58,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/d/f0.ts: - {"fileName":"/a/d/f0.ts","pollingInterval":250} + {"pollingInterval":250} /a/f1.ts: - {"fileName":"/a/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined @@ -131,17 +131,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/d/f0.ts: - {"fileName":"/a/d/f0.ts","pollingInterval":250} + {"pollingInterval":250} /a/f1.ts: - {"fileName":"/a/f1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined @@ -189,19 +189,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/d/f0.ts: - {"fileName":"/a/d/f0.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /node_modules: - {"fileName":"/node_modules","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /: - {"directoryName":""} + {} FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined @@ -257,17 +257,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/d/f0.ts: - {"fileName":"/a/d/f0.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/f1.ts: - {"fileName":"/a/f1.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined 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 ef9f47293af15..7f5379dbd3bdd 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 @@ -51,23 +51,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/test.ts: - {"fileName":"/user/username/projects/myproject/test.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/somemodule/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/somemodule/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -88,23 +88,23 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/test.ts: - {"fileName":"/user/username/projects/myproject/test.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/somemodule/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/somemodule/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} 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 29acf8b3c672b..2af93461eba74 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,17 +51,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/test.ts: - {"fileName":"/user/username/projects/myproject/test.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/somemodule/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/somemodule/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user: - {"directoryName":"/user"} + {} exitCode:: ExitStatus.undefined @@ -82,17 +82,17 @@ Output:: WatchedFiles:: /user/username/projects/myproject/test.ts: - {"fileName":"/user/username/projects/myproject/test.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/somemodule/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/somemodule/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user: - {"directoryName":"/user"} + {} exitCode:: ExitStatus.undefined 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 fe2afcf3739ba..57609d7fee74d 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,19 +47,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/foo.ts: - {"fileName":"/a/foo.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /node_modules: - {"fileName":"/node_modules","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /: - {"directoryName":""} + {} FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined @@ -107,17 +107,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/foo.ts: - {"fileName":"/a/foo.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/bar.d.ts: - {"fileName":"/a/bar.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined 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 a7a69e9bbf8fb..825ccaf4de74f 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,17 +48,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/foo.ts: - {"fileName":"/a/foo.ts","pollingInterval":250} + {"pollingInterval":250} /a/bar.d.ts: - {"fileName":"/a/bar.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined @@ -103,19 +103,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/foo.ts: - {"fileName":"/a/foo.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /node_modules: - {"fileName":"/node_modules","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /: - {"directoryName":""} + {} FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined @@ -154,17 +154,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/foo.ts: - {"fileName":"/a/foo.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/bar.d.ts: - {"fileName":"/a/bar.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a: - {"directoryName":"/a"} + {} exitCode:: ExitStatus.undefined 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 e1320878fe8ab..6b94e3faa6f89 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 @@ -52,19 +52,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib/app.ts: - {"fileName":"/user/username/projects/myproject/lib/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules: - {"fileName":"/user/username/projects/myproject/node_modules","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -115,23 +115,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib/app.ts: - {"fileName":"/user/username/projects/myproject/lib/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@myapp/ts-types/types/somefile.define.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/@myapp/ts-types/types/somefile.define.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@myapp/ts-types/package.json: - {"fileName":"/user/username/projects/myproject/node_modules/@myapp/ts-types/package.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} exitCode:: ExitStatus.undefined @@ -145,23 +145,23 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/lib/app.ts: - {"fileName":"/user/username/projects/myproject/lib/app.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@myapp/ts-types/types/somefile.define.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/@myapp/ts-types/types/somefile.define.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@myapp/ts-types/package.json: - {"fileName":"/user/username/projects/myproject/node_modules/@myapp/ts-types/package.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} exitCode:: ExitStatus.undefined 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 35fecf02e88db..dd8583e823b91 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 @@ -61,31 +61,31 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/main/tsconfig.json: - {"fileName":"/user/username/projects/myproject/main/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main/index.ts: - {"fileName":"/user/username/projects/myproject/main/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/linked-package/dist/index.d.ts: - {"fileName":"/user/username/projects/myproject/linked-package/dist/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/linked-package/dist/other.d.ts: - {"fileName":"/user/username/projects/myproject/linked-package/dist/other.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main/@scoped: - {"fileName":"/user/username/projects/myproject/main/@scoped","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/linked-package/package.json: - {"fileName":"/user/username/projects/myproject/linked-package/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main/node_modules/@types: - {"fileName":"/user/username/projects/myproject/main/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/linked-package: - {"directoryName":"/user/username/projects/myproject/linked-package"} + {} /user/username/projects/myproject/main/node_modules: - {"directoryName":"/user/username/projects/myproject/main/node_modules"} + {} exitCode:: ExitStatus.undefined 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 7a31ccf2e162a..e23ca8d7b08c0 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,15 +62,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/foo.ts: - {"fileName":"/a/b/foo.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/bar.d.ts: - {"fileName":"/a/b/bar.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules: - {"fileName":"/a/b/node_modules","pollingInterval":500} + {"pollingInterval":500} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -129,15 +129,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/foo.ts: - {"fileName":"/a/b/foo.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/bar.d.ts: - {"fileName":"/a/b/bar.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules: - {"fileName":"/a/b/node_modules","pollingInterval":500} + {"pollingInterval":500} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 680941f6bbb29..f6777f2993366 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 @@ -92,29 +92,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/worker.ts: - {"fileName":"/user/username/projects/myproject/worker.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types/node/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/@types/node/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types/node/base.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/@types/node/base.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types/node/ts3.6/base.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/@types/node/ts3.6/base.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types/node/globals.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/@types/node/globals.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/@types: - {"directoryName":"/user/username/projects/myproject/node_modules/@types"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -248,21 +248,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/worker.ts: - {"fileName":"/user/username/projects/myproject/worker.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/@types: - {"directoryName":"/user/username/projects/myproject/node_modules/@types"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -339,23 +339,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/worker.ts: - {"fileName":"/user/username/projects/myproject/worker.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/@types/mocha/index.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/@types: - {"directoryName":"/user/username/projects/myproject/node_modules/@types"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -404,23 +404,23 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/worker.ts: - {"fileName":"/user/username/projects/myproject/worker.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/@types/mocha/index.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/@types: - {"directoryName":"/user/username/projects/myproject/node_modules/@types"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -513,31 +513,31 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/worker.ts: - {"fileName":"/user/username/projects/myproject/worker.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/@types/mocha/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types/node/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/@types/node/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types/node/base.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/@types/node/base.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types/node/ts3.6/base.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/@types/node/ts3.6/base.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types/node/globals.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/@types/node/globals.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/@types: - {"directoryName":"/user/username/projects/myproject/node_modules/@types"} + {} /user/username/projects/myproject: - {"directoryName":"/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 cdcb9826c2543..706b472583d97 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,13 +47,13 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/foo.ts: - {"fileName":"/a/b/foo.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules: - {"fileName":"/a/b/node_modules","pollingInterval":500} + {"pollingInterval":500} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -115,19 +115,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/foo.ts: - {"fileName":"/a/b/foo.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types/node/index.d.ts: - {"fileName":"/a/b/node_modules/@types/node/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types/node/package.json: - {"fileName":"/a/b/node_modules/@types/node/package.json","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /a/b/node_modules/@types: - {"directoryName":"/a/b/node_modules/@types"} + {} exitCode:: ExitStatus.undefined 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 03e4f971c3bf0..99ec9611c7260 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 @@ -50,13 +50,13 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules: - {"fileName":"/user/username/projects/myproject/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -107,19 +107,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/a.ts: - {"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types/qqq/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/@types/qqq/index.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/@types: - {"directoryName":"/user/username/projects/myproject/node_modules/@types"} + {} exitCode:: ExitStatus.undefined 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 1b521b05289ce..c1ff6a618535a 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,29 +59,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/projects/myproject/src/tsconfig.json: - {"fileName":"/a/b/projects/myProject/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/projects/myproject/src/file1.ts: - {"fileName":"/a/b/projects/myProject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/projects/myproject/node_modules/module1/index.js: - {"fileName":"/a/b/projects/myProject/node_modules/module1/index.js","pollingInterval":250} + {"pollingInterval":250} /a/b/projects/myproject/src/file2.ts: - {"fileName":"/a/b/projects/myProject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/projects/myproject/src/node_modules: - {"fileName":"/a/b/projects/myProject/src/node_modules","pollingInterval":500} + {"pollingInterval":500} /a/b/projects/myproject/src/node_modules/@types: - {"fileName":"/a/b/projects/myProject/src/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/b/projects/myproject/node_modules/@types: - {"fileName":"/a/b/projects/myProject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b/projects/myproject/node_modules: - {"directoryName":"/a/b/projects/myProject/node_modules"} + {} /a/b/projects/myproject/src: - {"directoryName":"/a/b/projects/myproject/src"} + {} exitCode:: ExitStatus.undefined @@ -134,29 +134,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/projects/myproject/src/tsconfig.json: - {"fileName":"/a/b/projects/myProject/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/projects/myproject/src/file1.ts: - {"fileName":"/a/b/projects/myProject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/projects/myproject/node_modules/module1/index.js: - {"fileName":"/a/b/projects/myProject/node_modules/module1/index.js","pollingInterval":250} + {"pollingInterval":250} /a/b/projects/myproject/src/file2.ts: - {"fileName":"/a/b/projects/myProject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/projects/myproject/src/node_modules: - {"fileName":"/a/b/projects/myProject/src/node_modules","pollingInterval":500} + {"pollingInterval":500} /a/b/projects/myproject/src/node_modules/@types: - {"fileName":"/a/b/projects/myProject/src/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/b/projects/myproject/node_modules/@types: - {"fileName":"/a/b/projects/myProject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b/projects/myproject/node_modules: - {"directoryName":"/a/b/projects/myProject/node_modules"} + {} /a/b/projects/myproject/src: - {"directoryName":"/a/b/projects/myproject/src"} + {} exitCode:: ExitStatus.undefined 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 394859cce51f6..cf0001a5b698a 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 @@ -208,40 +208,40 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/a/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/A/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/B/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/src/index.ts: - {"fileName":"/user/username/projects/myproject/packages/A/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/index.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/bar.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/bar.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/b/package.json: - {"fileName":"/user/username/projects/myproject/packages/B/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: - {"directoryName":"/user/username/projects/myproject/packages/b/src"} + {} /user/username/projects/myproject/packages/a/src: - {"directoryName":"/user/username/projects/myproject/packages/A/src"} - {"directoryName":"/user/username/projects/myproject/packages/a/src"} + {} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} 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 b78327f3d20c7..9f48c382554ee 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 @@ -208,40 +208,40 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/a/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/A/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/B/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/src/index.ts: - {"fileName":"/user/username/projects/myproject/packages/A/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/index.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/bar.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/bar.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/b/package.json: - {"fileName":"/user/username/projects/myproject/packages/B/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: - {"directoryName":"/user/username/projects/myproject/packages/b/src"} + {} /user/username/projects/myproject/packages/a/src: - {"directoryName":"/user/username/projects/myproject/packages/A/src"} - {"directoryName":"/user/username/projects/myproject/packages/a/src"} + {} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} 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 31d0171535376..5d41b16d1563c 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,40 +68,40 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/a/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/A/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/B/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/src/index.ts: - {"fileName":"/user/username/projects/myproject/packages/A/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/index.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/bar.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/bar.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/b/package.json: - {"fileName":"/user/username/projects/myproject/packages/B/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: - {"directoryName":"/user/username/projects/myproject/packages/b/src"} + {} /user/username/projects/myproject/packages/a/src: - {"directoryName":"/user/username/projects/myproject/packages/A/src"} - {"directoryName":"/user/username/projects/myproject/packages/a/src"} + {} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} 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 e8aaaabe63696..58c2821479c92 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 @@ -208,40 +208,40 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/a/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/A/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/B/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/src/index.ts: - {"fileName":"/user/username/projects/myproject/packages/A/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/index.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/bar.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/bar.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/b/package.json: - {"fileName":"/user/username/projects/myproject/packages/B/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: - {"directoryName":"/user/username/projects/myproject/packages/b/src"} + {} /user/username/projects/myproject/packages/a/src: - {"directoryName":"/user/username/projects/myproject/packages/A/src"} - {"directoryName":"/user/username/projects/myproject/packages/a/src"} + {} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} 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 2e22ee7ae0e36..bf178ce7a07ca 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 @@ -208,40 +208,40 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/a/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/A/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/B/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/src/index.ts: - {"fileName":"/user/username/projects/myproject/packages/A/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/index.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/bar.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/bar.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/b/package.json: - {"fileName":"/user/username/projects/myproject/packages/B/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: - {"directoryName":"/user/username/projects/myproject/packages/b/src"} + {} /user/username/projects/myproject/packages/a/src: - {"directoryName":"/user/username/projects/myproject/packages/A/src"} - {"directoryName":"/user/username/projects/myproject/packages/a/src"} + {} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} 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 62dca346c1783..4734c8e21ad75 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,40 +68,40 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/a/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/A/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/B/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/src/index.ts: - {"fileName":"/user/username/projects/myproject/packages/A/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/index.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/bar.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/bar.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/b/package.json: - {"fileName":"/user/username/projects/myproject/packages/B/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: - {"directoryName":"/user/username/projects/myproject/packages/b/src"} + {} /user/username/projects/myproject/packages/a/src: - {"directoryName":"/user/username/projects/myproject/packages/A/src"} - {"directoryName":"/user/username/projects/myproject/packages/a/src"} + {} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} 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 fdee02c04ffd9..3713a8877299e 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,40 +68,40 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/a/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/A/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/B/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/src/index.ts: - {"fileName":"/user/username/projects/myproject/packages/A/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/index.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/bar.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/bar.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/b/package.json: - {"fileName":"/user/username/projects/myproject/packages/B/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: - {"directoryName":"/user/username/projects/myproject/packages/b/src"} + {} /user/username/projects/myproject/packages/a/src: - {"directoryName":"/user/username/projects/myproject/packages/A/src"} - {"directoryName":"/user/username/projects/myproject/packages/a/src"} + {} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} 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 f6c7790fa7dfc..de442d278d639 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,40 +68,40 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/a/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/A/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/B/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/src/index.ts: - {"fileName":"/user/username/projects/myproject/packages/A/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/index.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/bar.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/bar.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/b/package.json: - {"fileName":"/user/username/projects/myproject/packages/B/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: - {"directoryName":"/user/username/projects/myproject/packages/b/src"} + {} /user/username/projects/myproject/packages/a/src: - {"directoryName":"/user/username/projects/myproject/packages/A/src"} - {"directoryName":"/user/username/projects/myproject/packages/a/src"} + {} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} 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 89f01e8b505c5..7fdbb38b31bb4 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 @@ -208,40 +208,40 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/a/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/A/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/B/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/src/test.ts: - {"fileName":"/user/username/projects/myproject/packages/A/src/test.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/foo.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/foo.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/bar/foo.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/bar/foo.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/b/package.json: - {"fileName":"/user/username/projects/myproject/packages/B/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: - {"directoryName":"/user/username/projects/myproject/packages/b/src"} + {} /user/username/projects/myproject/packages/a/src: - {"directoryName":"/user/username/projects/myproject/packages/A/src"} - {"directoryName":"/user/username/projects/myproject/packages/a/src"} + {} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} 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 60e19c98dfbc2..af900a0118c13 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 @@ -208,40 +208,40 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/a/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/A/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/B/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/src/test.ts: - {"fileName":"/user/username/projects/myproject/packages/A/src/test.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/foo.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/foo.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/bar/foo.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/bar/foo.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/b/package.json: - {"fileName":"/user/username/projects/myproject/packages/B/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: - {"directoryName":"/user/username/projects/myproject/packages/b/src"} + {} /user/username/projects/myproject/packages/a/src: - {"directoryName":"/user/username/projects/myproject/packages/A/src"} - {"directoryName":"/user/username/projects/myproject/packages/a/src"} + {} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} 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 8d777c5dc7074..6867f7850ad08 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,40 +68,40 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/a/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/A/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/B/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/src/test.ts: - {"fileName":"/user/username/projects/myproject/packages/A/src/test.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/foo.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/foo.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/bar/foo.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/bar/foo.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/b/package.json: - {"fileName":"/user/username/projects/myproject/packages/B/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: - {"directoryName":"/user/username/projects/myproject/packages/b/src"} + {} /user/username/projects/myproject/packages/a/src: - {"directoryName":"/user/username/projects/myproject/packages/A/src"} - {"directoryName":"/user/username/projects/myproject/packages/a/src"} + {} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} 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 7d64d99143429..ead5b346b67a4 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 @@ -208,40 +208,40 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/a/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/A/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/B/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/src/test.ts: - {"fileName":"/user/username/projects/myproject/packages/A/src/test.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/foo.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/foo.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/bar/foo.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/bar/foo.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/b/package.json: - {"fileName":"/user/username/projects/myproject/packages/B/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: - {"directoryName":"/user/username/projects/myproject/packages/b/src"} + {} /user/username/projects/myproject/packages/a/src: - {"directoryName":"/user/username/projects/myproject/packages/A/src"} - {"directoryName":"/user/username/projects/myproject/packages/a/src"} + {} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} 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 77a5f48c23a94..20c355e5790c2 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 @@ -208,40 +208,40 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/a/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/A/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/B/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/src/test.ts: - {"fileName":"/user/username/projects/myproject/packages/A/src/test.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/foo.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/foo.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/bar/foo.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/bar/foo.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/b/package.json: - {"fileName":"/user/username/projects/myproject/packages/B/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: - {"directoryName":"/user/username/projects/myproject/packages/b/src"} + {} /user/username/projects/myproject/packages/a/src: - {"directoryName":"/user/username/projects/myproject/packages/A/src"} - {"directoryName":"/user/username/projects/myproject/packages/a/src"} + {} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} 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 4add531da6633..3c508b5b66859 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,40 +68,40 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/a/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/A/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/B/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/src/test.ts: - {"fileName":"/user/username/projects/myproject/packages/A/src/test.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/foo.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/foo.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/bar/foo.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/bar/foo.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/b/package.json: - {"fileName":"/user/username/projects/myproject/packages/B/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: - {"directoryName":"/user/username/projects/myproject/packages/b/src"} + {} /user/username/projects/myproject/packages/a/src: - {"directoryName":"/user/username/projects/myproject/packages/A/src"} - {"directoryName":"/user/username/projects/myproject/packages/a/src"} + {} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} 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 a3efb115885ab..218f64441563f 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,40 +68,40 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/a/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/A/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/B/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/src/test.ts: - {"fileName":"/user/username/projects/myproject/packages/A/src/test.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/foo.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/foo.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/bar/foo.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/bar/foo.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/b/package.json: - {"fileName":"/user/username/projects/myproject/packages/B/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: - {"directoryName":"/user/username/projects/myproject/packages/b/src"} + {} /user/username/projects/myproject/packages/a/src: - {"directoryName":"/user/username/projects/myproject/packages/A/src"} - {"directoryName":"/user/username/projects/myproject/packages/a/src"} + {} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} 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 53b01c1cc6981..03bed55511eb8 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,40 +68,40 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/packages/a/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/A/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: - {"fileName":"/user/username/projects/myproject/packages/B/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/src/test.ts: - {"fileName":"/user/username/projects/myproject/packages/A/src/test.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/foo.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/foo.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/b/src/bar/foo.ts: - {"fileName":"/user/username/projects/myproject/packages/B/src/bar/foo.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: - {"fileName":"/user/username/projects/myproject/packages/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/b/package.json: - {"fileName":"/user/username/projects/myproject/packages/B/package.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/A/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: - {"fileName":"/user/username/projects/myproject/packages/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: - {"directoryName":"/user/username/projects/myproject/packages/b/src"} + {} /user/username/projects/myproject/packages/a/src: - {"directoryName":"/user/username/projects/myproject/packages/A/src"} - {"directoryName":"/user/username/projects/myproject/packages/a/src"} + {} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} 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 760b3e5c7f2e5..4a018192f0299 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 @@ -344,35 +344,35 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/demo/animals/tsconfig.json: - {"fileName":"/user/username/projects/demo/animals/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/core/tsconfig.json: - {"fileName":"/user/username/projects/demo/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/tsconfig-base.json: - {"fileName":"/user/username/projects/demo/tsconfig-base.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/animal.ts: - {"fileName":"/user/username/projects/demo/animals/animal.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/dog.ts: - {"fileName":"/user/username/projects/demo/animals/dog.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/index.ts: - {"fileName":"/user/username/projects/demo/animals/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/core/utilities.ts: - {"fileName":"/user/username/projects/demo/core/utilities.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/node_modules/@types: - {"fileName":"/user/username/projects/demo/animals/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/demo/node_modules/@types: - {"fileName":"/user/username/projects/demo/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/demo/animals: - {"directoryName":"/user/username/projects/demo/animals"} + {} FsWatchesRecursive:: /user/username/projects/demo/core: - {"directoryName":"/user/username/projects/demo/core"} + {} /user/username/projects/demo/animals: - {"directoryName":"/user/username/projects/demo/animals"} + {} 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 311d03dc487c2..ce537890102b6 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project.js @@ -136,35 +136,35 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/demo/animals/tsconfig.json: - {"fileName":"/user/username/projects/demo/animals/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/core/tsconfig.json: - {"fileName":"/user/username/projects/demo/core/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/tsconfig-base.json: - {"fileName":"/user/username/projects/demo/tsconfig-base.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/animal.ts: - {"fileName":"/user/username/projects/demo/animals/animal.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/dog.ts: - {"fileName":"/user/username/projects/demo/animals/dog.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/index.ts: - {"fileName":"/user/username/projects/demo/animals/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/core/utilities.ts: - {"fileName":"/user/username/projects/demo/core/utilities.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/demo/animals/node_modules/@types: - {"fileName":"/user/username/projects/demo/animals/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/demo/node_modules/@types: - {"fileName":"/user/username/projects/demo/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/demo/animals: - {"directoryName":"/user/username/projects/demo/animals"} + {} FsWatchesRecursive:: /user/username/projects/demo/core: - {"directoryName":"/user/username/projects/demo/core"} + {} /user/username/projects/demo/animals: - {"directoryName":"/user/username/projects/demo/animals"} + {} 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 059b90a59d1d9..a4b9c42355954 100644 --- a/tests/baselines/reference/tscWatch/watchApi/extraFileExtensions-are-supported.js +++ b/tests/baselines/reference/tscWatch/watchApi/extraFileExtensions-are-supported.js @@ -51,21 +51,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.vue: - {"fileName":"/user/username/projects/myproject/other.vue","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -109,23 +109,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.vue: - {"fileName":"/user/username/projects/myproject/other.vue","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/other2.vue: - {"fileName":"/user/username/projects/myproject/other2.vue","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} 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 07655e7e14ea1..5fa7239ee022b 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 @@ -51,21 +51,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -148,21 +148,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -264,21 +264,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -354,21 +354,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -457,21 +457,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 40ea1799d226e..b42fd00d5a083 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 @@ -51,21 +51,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -155,21 +155,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -278,21 +278,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -375,21 +375,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -485,21 +485,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 3e829149ac994..a97602bcff8a4 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 @@ -56,21 +56,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -181,21 +181,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -300,21 +300,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 ddde27cb67143..89e182492cd6e 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 @@ -56,21 +56,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -188,21 +188,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -314,21 +314,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchApi/semantic-builder-emitOnlyDts.js b/tests/baselines/reference/tscWatch/watchApi/semantic-builder-emitOnlyDts.js index 06a1ed29408f0..9abb409ec55fb 100644 --- a/tests/baselines/reference/tscWatch/watchApi/semantic-builder-emitOnlyDts.js +++ b/tests/baselines/reference/tscWatch/watchApi/semantic-builder-emitOnlyDts.js @@ -56,21 +56,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -174,21 +174,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 7f5292f597fa5..496c8c644e80a 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 @@ -51,21 +51,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -102,21 +102,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/other.ts: - {"fileName":"/user/username/projects/myproject/other.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined 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 0e85dbe7067f7..557185dc0adef 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 @@ -61,15 +61,15 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/index.ts: - {"fileName":"/user/username/projects/myproject/index.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/settings.json: - {"fileName":"/user/username/projects/myproject/settings.json","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 ba249291278a4..52be33e62bddf 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 @@ -60,13 +60,13 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/index.ts: - {"fileName":"/user/username/projects/myproject/index.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 104a0d79a6539..8a7bbe5c5e734 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 @@ -78,29 +78,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/projects/project2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/class1.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class1.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/class2.ts: - {"fileName":"/user/username/projects/myproject/projects/project2/class2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/project2/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: - {"directoryName":"/user/username/projects/myproject/projects/project1"} + {} /user/username/projects/myproject/projects/project2: - {"directoryName":"/user/username/projects/myproject/projects/project2"} + {} exitCode:: ExitStatus.undefined @@ -208,31 +208,31 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/projects/project2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/class1.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class1.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/class2.ts: - {"fileName":"/user/username/projects/myproject/projects/project2/class2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/project2/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/project1/class3.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class3.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: - {"directoryName":"/user/username/projects/myproject/projects/project1"} + {} /user/username/projects/myproject/projects/project2: - {"directoryName":"/user/username/projects/myproject/projects/project2"} + {} exitCode:: ExitStatus.undefined @@ -286,31 +286,31 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/projects/project2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/class1.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class1.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/class2.ts: - {"fileName":"/user/username/projects/myproject/projects/project2/class2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/project2/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/project1/class3.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class3.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: - {"directoryName":"/user/username/projects/myproject/projects/project1"} + {} /user/username/projects/myproject/projects/project2: - {"directoryName":"/user/username/projects/myproject/projects/project2"} + {} exitCode:: ExitStatus.undefined @@ -384,31 +384,31 @@ Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myprojec WatchedFiles:: /user/username/projects/myproject/projects/project2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/class1.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class1.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/class2.ts: - {"fileName":"/user/username/projects/myproject/projects/project2/class2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/project2/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/project1/class3.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class3.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: - {"directoryName":"/user/username/projects/myproject/projects/project1"} + {} /user/username/projects/myproject/projects/project2: - {"directoryName":"/user/username/projects/myproject/projects/project2"} + {} exitCode:: ExitStatus.undefined @@ -465,31 +465,31 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/projects/project2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/class1.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class1.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/class2.ts: - {"fileName":"/user/username/projects/myproject/projects/project2/class2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/project2/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/project1/class3.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class3.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: - {"directoryName":"/user/username/projects/myproject/projects/project1"} + {} /user/username/projects/myproject/projects/project2: - {"directoryName":"/user/username/projects/myproject/projects/project2"} + {} exitCode:: ExitStatus.undefined @@ -585,31 +585,31 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/projects/project2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/class1.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class1.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/class2.ts: - {"fileName":"/user/username/projects/myproject/projects/project2/class2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/project2/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/project1/class3.d.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class3.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: - {"directoryName":"/user/username/projects/myproject/projects/project1"} + {} /user/username/projects/myproject/projects/project2: - {"directoryName":"/user/username/projects/myproject/projects/project2"} + {} exitCode:: ExitStatus.undefined 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 1cbeb5cd8063f..102d7cb8eb459 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 @@ -78,29 +78,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/projects/project2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/class1.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/class2.ts: - {"fileName":"/user/username/projects/myproject/projects/project2/class2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/project2/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: - {"directoryName":"/user/username/projects/myproject/projects/project1"} + {} /user/username/projects/myproject/projects/project2: - {"directoryName":"/user/username/projects/myproject/projects/project2"} + {} exitCode:: ExitStatus.undefined @@ -207,31 +207,31 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/projects/project2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/class1.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/class2.ts: - {"fileName":"/user/username/projects/myproject/projects/project2/class2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/project2/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/project1/class3.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: - {"directoryName":"/user/username/projects/myproject/projects/project1"} + {} /user/username/projects/myproject/projects/project2: - {"directoryName":"/user/username/projects/myproject/projects/project2"} + {} exitCode:: ExitStatus.undefined @@ -305,31 +305,31 @@ Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myprojec WatchedFiles:: /user/username/projects/myproject/projects/project2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/class1.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/class2.ts: - {"fileName":"/user/username/projects/myproject/projects/project2/class2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/project2/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/project1/class3.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: - {"directoryName":"/user/username/projects/myproject/projects/project1"} + {} /user/username/projects/myproject/projects/project2: - {"directoryName":"/user/username/projects/myproject/projects/project2"} + {} exitCode:: ExitStatus.undefined @@ -349,31 +349,31 @@ Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myprojec WatchedFiles:: /user/username/projects/myproject/projects/project2/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project2/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: - {"fileName":"/user/username/projects/myproject/projects/project1/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project1/class1.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/class2.ts: - {"fileName":"/user/username/projects/myproject/projects/project2/class2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/project2/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: - {"fileName":"/user/username/projects/myproject/projects/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/projects/project1/class3.ts: - {"fileName":"/user/username/projects/myproject/projects/project1/class3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: - {"directoryName":"/user/username/projects/myproject/projects/project1"} + {} /user/username/projects/myproject/projects/project2: - {"directoryName":"/user/username/projects/myproject/projects/project2"} + {} exitCode:: ExitStatus.undefined 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 4c5a5c4a2a475..eae59a415a779 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 @@ -45,19 +45,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -97,21 +97,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/main.ts: - {"fileName":"/user/username/projects/myproject/main.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/bar.ts: - {"fileName":"/user/username/projects/myproject/bar.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} 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 68b98e430f771..925286d4f58e1 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 @@ -65,19 +65,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"directoryName":"/user/username/projects/myproject/tsconfig.json","inode":10} + {"inode":10} /user/username/projects/myproject/foo.d.ts: - {"directoryName":"/user/username/projects/myproject/foo.d.ts","inode":9} + {"inode":9} /user/username/projects/myproject/main.ts: - {"directoryName":"/user/username/projects/myproject/main.ts","inode":8} + {"inode":8} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject","inode":7} + {"inode":7} /a/lib/lib.d.ts: - {"directoryName":"/a/lib/lib.d.ts","inode":3} + {"inode":3} FsWatchesRecursive:: @@ -165,19 +165,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"directoryName":"/user/username/projects/myproject/tsconfig.json","inode":10} + {"inode":10} /user/username/projects/myproject/main.ts: - {"directoryName":"/user/username/projects/myproject/main.ts","inode":8} + {"inode":8} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject","inode":7} + {"inode":7} /a/lib/lib.d.ts: - {"directoryName":"/a/lib/lib.d.ts","inode":3} + {"inode":3} /user/username/projects/myproject/foo.d.ts: - {"directoryName":"/user/username/projects/myproject/foo.d.ts","inode":12} + {"inode":12} FsWatchesRecursive:: @@ -249,19 +249,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"directoryName":"/user/username/projects/myproject/tsconfig.json","inode":10} + {"inode":10} /user/username/projects/myproject/main.ts: - {"directoryName":"/user/username/projects/myproject/main.ts","inode":8} + {"inode":8} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject","inode":7} + {"inode":7} /a/lib/lib.d.ts: - {"directoryName":"/a/lib/lib.d.ts","inode":3} + {"inode":3} /user/username/projects/myproject/foo.d.ts: - {"directoryName":"/user/username/projects/myproject/foo.d.ts","inode":13} + {"inode":13} FsWatchesRecursive:: 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 c4141fa5d0453..28c7796be2969 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 @@ -61,17 +61,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"directoryName":"/user/username/projects/myproject/tsconfig.json","inode":10} + {"inode":10} /user/username/projects/myproject/foo.ts: - {"directoryName":"/user/username/projects/myproject/foo.ts","inode":9} + {"inode":9} /user/username/projects/myproject/main.ts: - {"directoryName":"/user/username/projects/myproject/main.ts","inode":8} + {"inode":8} /a/lib/lib.d.ts: - {"directoryName":"/a/lib/lib.d.ts","inode":3} + {"inode":3} FsWatchesRecursive:: @@ -140,17 +140,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"directoryName":"/user/username/projects/myproject/tsconfig.json","inode":10} + {"inode":10} /user/username/projects/myproject/main.ts: - {"directoryName":"/user/username/projects/myproject/main.ts","inode":8} + {"inode":8} /a/lib/lib.d.ts: - {"directoryName":"/a/lib/lib.d.ts","inode":3} + {"inode":3} /user/username/projects/myproject/foo.ts: - {"directoryName":"/user/username/projects/myproject/foo.ts","inode":13} + {"inode":13} FsWatchesRecursive:: @@ -207,17 +207,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"directoryName":"/user/username/projects/myproject/tsconfig.json","inode":10} + {"inode":10} /user/username/projects/myproject/main.ts: - {"directoryName":"/user/username/projects/myproject/main.ts","inode":8} + {"inode":8} /a/lib/lib.d.ts: - {"directoryName":"/a/lib/lib.d.ts","inode":3} + {"inode":3} /user/username/projects/myproject/foo.ts: - {"directoryName":"/user/username/projects/myproject/foo.ts","inode":14} + {"inode":14} FsWatchesRecursive:: 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 534e0e7161485..101268831afd6 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 @@ -65,19 +65,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"directoryName":"/user/username/projects/myproject/tsconfig.json","inode":10} + {"inode":10} /user/username/projects/myproject/foo.d.ts: - {"directoryName":"/user/username/projects/myproject/foo.d.ts","inode":9} + {"inode":9} /user/username/projects/myproject/main.ts: - {"directoryName":"/user/username/projects/myproject/main.ts","inode":8} + {"inode":8} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject","inode":7} + {"inode":7} /a/lib/lib.d.ts: - {"directoryName":"/a/lib/lib.d.ts","inode":3} + {"inode":3} FsWatchesRecursive:: @@ -155,19 +155,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"directoryName":"/user/username/projects/myproject/tsconfig.json","inode":10} + {"inode":10} /user/username/projects/myproject/main.ts: - {"directoryName":"/user/username/projects/myproject/main.ts","inode":8} + {"inode":8} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject","inode":7} + {"inode":7} /a/lib/lib.d.ts: - {"directoryName":"/a/lib/lib.d.ts","inode":3} + {"inode":3} /user/username/projects/myproject/foo.d.ts: - {"directoryName":"/user/username/projects/myproject/foo.d.ts","inode":12} + {"inode":12} FsWatchesRecursive:: @@ -229,19 +229,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"directoryName":"/user/username/projects/myproject/tsconfig.json","inode":10} + {"inode":10} /user/username/projects/myproject/main.ts: - {"directoryName":"/user/username/projects/myproject/main.ts","inode":8} + {"inode":8} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject","inode":7} + {"inode":7} /a/lib/lib.d.ts: - {"directoryName":"/a/lib/lib.d.ts","inode":3} + {"inode":3} /user/username/projects/myproject/foo.d.ts: - {"directoryName":"/user/username/projects/myproject/foo.d.ts","inode":13} + {"inode":13} FsWatchesRecursive:: 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 129e3ec2f790a..29c6f2b2aa89b 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 @@ -61,17 +61,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"directoryName":"/user/username/projects/myproject/tsconfig.json"} + {} /user/username/projects/myproject/foo.ts: - {"directoryName":"/user/username/projects/myproject/foo.ts"} + {} /user/username/projects/myproject/main.ts: - {"directoryName":"/user/username/projects/myproject/main.ts"} + {} /a/lib/lib.d.ts: - {"directoryName":"/a/lib/lib.d.ts"} + {} FsWatchesRecursive:: @@ -139,17 +139,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"directoryName":"/user/username/projects/myproject/tsconfig.json"} + {} /user/username/projects/myproject/foo.ts: - {"directoryName":"/user/username/projects/myproject/foo.ts"} + {} /user/username/projects/myproject/main.ts: - {"directoryName":"/user/username/projects/myproject/main.ts"} + {} /a/lib/lib.d.ts: - {"directoryName":"/a/lib/lib.d.ts"} + {} FsWatchesRecursive:: @@ -200,17 +200,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"directoryName":"/user/username/projects/myproject/tsconfig.json"} + {} /user/username/projects/myproject/foo.ts: - {"directoryName":"/user/username/projects/myproject/foo.ts"} + {} /user/username/projects/myproject/main.ts: - {"directoryName":"/user/username/projects/myproject/main.ts"} + {} /a/lib/lib.d.ts: - {"directoryName":"/a/lib/lib.d.ts"} + {} FsWatchesRecursive:: 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 9e88224fe6d5b..dc34a4001ec17 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:: WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/username/project/src/file1.ts: - {"fileName":"/a/username/project/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -92,11 +92,11 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/username/project/src/file2.ts: - {"fileName":"/a/username/project/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 3e010dd8582e3..6c469f6459148 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 @@ -45,19 +45,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/username/project/src/file1.ts: - {"fileName":"/a/username/project/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/username/project/node_modules/@types: - {"fileName":"/a/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /a/username/project: - {"directoryName":"/a/username/project"} + {} /a/username/project/src: - {"directoryName":"/a/username/project/src"} + {} FsWatchesRecursive:: @@ -98,19 +98,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/username/project/node_modules/@types: - {"fileName":"/a/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/username/project/src/file2.ts: - {"fileName":"/a/username/project/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /a/username/project: - {"directoryName":"/a/username/project"} + {} /a/username/project/src: - {"directoryName":"/a/username/project/src"} + {} FsWatchesRecursive:: 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 8a34513c078c1..cf3167d2919cf 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,17 +45,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/username/project/src/file1.ts: - {"fileName":"/a/username/project/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/username/project/node_modules/@types: - {"fileName":"/a/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/username/project: - {"fileName":"/a/username/project","pollingInterval":500} + {"pollingInterval":500} /a/username/project/src: - {"fileName":"/a/username/project/src","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -98,17 +98,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/username/project/node_modules/@types: - {"fileName":"/a/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/username/project: - {"fileName":"/a/username/project","pollingInterval":500} + {"pollingInterval":500} /a/username/project/src: - {"fileName":"/a/username/project/src","pollingInterval":500} + {"pollingInterval":500} /a/username/project/src/file2.ts: - {"fileName":"/a/username/project/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 cc34fa03cb455..ceb02a7c33be0 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 @@ -87,31 +87,31 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /home/user/projects/myproject/tsconfig.json: - {"fileName":"/home/user/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /home/user/projects/myproject/src/file.ts: - {"fileName":"/home/user/projects/myproject/src/file.ts","pollingInterval":250} + {"pollingInterval":250} /home/user/projects/myproject/node_modules/reala/index.d.ts: - {"fileName":"/home/user/projects/myproject/node_modules/reala/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /home/user/projects/myproject/node_modules/@types: - {"fileName":"/home/user/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /home/user/projects/myproject/src: - {"directoryName":"/home/user/projects/myproject/src"} + {} /home/user/projects/myproject/node_modules: - {"directoryName":"/home/user/projects/myproject/node_modules"} + {} /home/user/projects/myproject/node_modules/reala: - {"directoryName":"/home/user/projects/myproject/node_modules/reala"} + {} /home/user/projects/myproject/node_modules/reala/node_modules: - {"directoryName":"/home/user/projects/myproject/node_modules/reala/node_modules"} + {} /home/user/projects/myproject/node_modules/realb: - {"directoryName":"/home/user/projects/myproject/node_modules/realb"} + {} /home/user/projects/myproject/node_modules/realb/node_modules: - {"directoryName":"/home/user/projects/myproject/node_modules/realb/node_modules"} + {} /home/user/projects/myproject: - {"directoryName":"/home/user/projects/myproject"} + {} FsWatchesRecursive:: 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 5f9740db448a6..0b51745370b48 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 @@ -51,23 +51,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} /user/username/projects/myproject/dist: - {"directoryName":"/user/username/projects/myproject/dist"} + {} /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} FsWatchesRecursive:: @@ -94,23 +94,23 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} /user/username/projects/myproject/dist: - {"directoryName":"/user/username/projects/myproject/dist"} + {} /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} FsWatchesRecursive:: @@ -152,23 +152,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/file2.ts: - {"fileName":"/user/username/projects/myproject/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} /user/username/projects/myproject/dist: - {"directoryName":"/user/username/projects/myproject/dist"} + {} /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} FsWatchesRecursive:: @@ -210,23 +210,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/renamed.ts: - {"fileName":"/user/username/projects/myproject/src/renamed.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} /user/username/projects/myproject/dist: - {"directoryName":"/user/username/projects/myproject/dist"} + {} /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} FsWatchesRecursive:: 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 fe1d5cd21b1ad..94d82de3cae06 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 @@ -51,27 +51,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/file2/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/file2/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/file2: - {"directoryName":"/user/username/projects/myproject/node_modules/file2"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} /user/username/projects/myproject/dist: - {"directoryName":"/user/username/projects/myproject/dist"} + {} FsWatchesRecursive:: @@ -95,27 +95,27 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/file2/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/file2/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/file2: - {"directoryName":"/user/username/projects/myproject/node_modules/file2"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} /user/username/projects/myproject/dist: - {"directoryName":"/user/username/projects/myproject/dist"} + {} FsWatchesRecursive:: @@ -133,27 +133,27 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/file2/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/file2/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/file2: - {"directoryName":"/user/username/projects/myproject/node_modules/file2"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} /user/username/projects/myproject/dist: - {"directoryName":"/user/username/projects/myproject/dist"} + {} FsWatchesRecursive:: @@ -189,29 +189,29 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/file2/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/file2/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/file3.ts: - {"fileName":"/user/username/projects/myproject/src/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/file2: - {"directoryName":"/user/username/projects/myproject/node_modules/file2"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} /user/username/projects/myproject/dist: - {"directoryName":"/user/username/projects/myproject/dist"} + {} FsWatchesRecursive:: @@ -237,29 +237,29 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/file2/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/file2/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/file3.ts: - {"fileName":"/user/username/projects/myproject/src/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/file2: - {"directoryName":"/user/username/projects/myproject/node_modules/file2"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} /user/username/projects/myproject/dist: - {"directoryName":"/user/username/projects/myproject/dist"} + {} FsWatchesRecursive:: @@ -274,29 +274,29 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/file2/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/file2/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/src/file3.ts: - {"fileName":"/user/username/projects/myproject/src/file3.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/file2: - {"directoryName":"/user/username/projects/myproject/node_modules/file2"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} /user/username/projects/myproject/dist: - {"directoryName":"/user/username/projects/myproject/dist"} + {} FsWatchesRecursive:: 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 fd882350b6100..5accfb5389ee1 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 @@ -51,25 +51,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/file2/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/file2/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/file2: - {"directoryName":"/user/username/projects/myproject/node_modules/file2"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: @@ -89,25 +89,25 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/file2/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/file2/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/file2: - {"directoryName":"/user/username/projects/myproject/node_modules/file2"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: @@ -147,21 +147,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: @@ -199,21 +199,21 @@ No shapes updated in the builder:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: @@ -228,21 +228,21 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: @@ -257,21 +257,21 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: @@ -289,21 +289,21 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: @@ -318,23 +318,23 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} /user/username/projects/myproject/node_modules/file2: - {"directoryName":"/user/username/projects/myproject/node_modules/file2"} + {} FsWatchesRecursive:: @@ -349,23 +349,23 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} /user/username/projects/myproject/node_modules/file2: - {"directoryName":"/user/username/projects/myproject/node_modules/file2"} + {} FsWatchesRecursive:: @@ -402,25 +402,25 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: - {"fileName":"/user/username/projects/myproject/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/file2/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/file2/index.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} /user/username/projects/myproject/node_modules/file2: - {"directoryName":"/user/username/projects/myproject/node_modules/file2"} + {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/setting-default-as-fixed-chunk-size-watch-file-works.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/setting-default-as-fixed-chunk-size-watch-file-works.js index 48df9d0d09b1d..4558b15e8b543 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/setting-default-as-fixed-chunk-size-watch-file-works.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/setting-default-as-fixed-chunk-size-watch-file-works.js @@ -51,13 +51,13 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -81,13 +81,13 @@ Output:: WatchedFiles:: /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -123,13 +123,13 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/using-fixed-chunk-size-polling.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/using-fixed-chunk-size-polling.js index 37d63eb42a659..b725245676b0f 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/using-fixed-chunk-size-polling.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/using-fixed-chunk-size-polling.js @@ -51,13 +51,13 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -78,13 +78,13 @@ Output:: WatchedFiles:: /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -100,13 +100,13 @@ Output:: WatchedFiles:: /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -142,13 +142,13 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined @@ -166,13 +166,13 @@ Output:: WatchedFiles:: /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} 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 d446331971d45..cc53fb9c04273 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 @@ -80,23 +80,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: - {"fileName":"/user/username/projects/myproject/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/foo.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -117,23 +117,23 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: - {"fileName":"/user/username/projects/myproject/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/foo.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} 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 4108bc5d7d004..16410a745160a 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 @@ -80,27 +80,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: - {"fileName":"/user/username/projects/myproject/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/foo.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/bar: - {"directoryName":"/user/username/projects/myproject/node_modules/bar"} + {} /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: @@ -131,27 +131,27 @@ sysLog:: Elapsed:: *ms:: onTimerToUpdateChildWatches:: 0 undefined WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: - {"fileName":"/user/username/projects/myproject/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/foo.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/bar: - {"directoryName":"/user/username/projects/myproject/node_modules/bar"} + {} /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: @@ -169,27 +169,27 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: - {"fileName":"/user/username/projects/myproject/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/foo.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/bar: - {"directoryName":"/user/username/projects/myproject/node_modules/bar"} + {} /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: 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 861cd0deecbc5..0d044cfc794ab 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 @@ -63,27 +63,27 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: - {"fileName":"/user/username/projects/myproject/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/foo.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/bar: - {"directoryName":"/user/username/projects/myproject/node_modules/bar"} + {} /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: @@ -105,27 +105,27 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: - {"fileName":"/user/username/projects/myproject/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/foo.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/bar: - {"directoryName":"/user/username/projects/myproject/node_modules/bar"} + {} /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: @@ -143,27 +143,27 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: - {"fileName":"/user/username/projects/myproject/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/foo.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/node_modules/bar: - {"directoryName":"/user/username/projects/myproject/node_modules/bar"} + {} /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: 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 cb23ea9ee58a5..4f2c1dda02bc0 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option.js @@ -63,23 +63,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: - {"fileName":"/user/username/projects/myproject/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/foo.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -100,23 +100,23 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: - {"fileName":"/user/username/projects/myproject/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/index.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/index.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"fileName":"/user/username/projects/myproject/node_modules/bar/foo.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} 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 d42d1d0303940..569e9bf474c34 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 @@ -82,23 +82,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: - {"fileName":"/user/username/projects/myproject/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -121,23 +121,23 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: - {"fileName":"/user/username/projects/myproject/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} 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 54ce05a590cbf..91da21807663e 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option.js @@ -63,23 +63,23 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: - {"fileName":"/user/username/projects/myproject/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} exitCode:: ExitStatus.undefined @@ -102,23 +102,23 @@ Output:: WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: - {"fileName":"/user/username/projects/myproject/src/main.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} 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 107621d3195ca..d815fe6eb5ebd 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-fallbackPolling-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-fallbackPolling-option.js @@ -52,17 +52,17 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/b: - {"fileName":"/a/b","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 a43e13698624b..f1ac76351b699 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchDirectory-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchDirectory-option.js @@ -51,19 +51,19 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile1.ts: - {"fileName":"/a/b/commonFile1.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /a/b: - {"directoryName":"/a/b"} + {} FsWatchesRecursive:: 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 084d4488fe36a..8b60758d4dc65 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,21 +51,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /a/b/tsconfig.json: - {"directoryName":"/a/b/tsconfig.json"} + {} /a/b/commonfile1.ts: - {"directoryName":"/a/b/commonFile1.ts"} + {} /a/b/commonfile2.ts: - {"directoryName":"/a/b/commonFile2.ts"} + {} /a/lib/lib.d.ts: - {"directoryName":"/a/lib/lib.d.ts"} + {} FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 039ddc7bc3d5b..a49ff2de930f4 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchFile-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchFile-option.js @@ -51,21 +51,21 @@ Shape signatures in builder refreshed for:: WatchedFiles:: /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /a/b/tsconfig.json: - {"directoryName":"/a/b/tsconfig.json"} + {} /a/b/commonfile1.ts: - {"directoryName":"/a/b/commonFile1.ts"} + {} /a/b/commonfile2.ts: - {"directoryName":"/a/b/commonFile2.ts"} + {} /a/lib/lib.d.ts: - {"directoryName":"/a/lib/lib.d.ts"} + {} FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} exitCode:: ExitStatus.undefined 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 a76600a1ca517..78452a5ddb592 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 @@ -41,10 +41,10 @@ Open files: Projects: /user/username/projects/myproject/project.csproj WatchedFiles:: /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} 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 24e4d6cdd6c8e..791ee1a279cdc 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options.js @@ -41,12 +41,12 @@ Open files: Projects: /user/username/projects/myproject/project.csproj WatchedFiles:: /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} diff --git a/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js b/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js index b6c7ad5469e12..f75d983f0cbc8 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js @@ -45,16 +45,16 @@ Open files: Projects: c:/project/tsconfig.json WatchedFiles:: c:/project/tsconfig.json: - {"fileName":"c:/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} c:/project/file2.ts: - {"fileName":"c:/project/file2.ts","pollingInterval":250} + {"pollingInterval":250} c:/a/lib/lib.d.ts: - {"fileName":"c:/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} c:/project/node_modules/@types: - {"fileName":"c:/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: c:/project: - {"directoryName":"c:/project"} + {} 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 b6c7ad5469e12..f75d983f0cbc8 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 @@ -45,16 +45,16 @@ Open files: Projects: c:/project/tsconfig.json WatchedFiles:: c:/project/tsconfig.json: - {"fileName":"c:/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} c:/project/file2.ts: - {"fileName":"c:/project/file2.ts","pollingInterval":250} + {"pollingInterval":250} c:/a/lib/lib.d.ts: - {"fileName":"c:/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} c:/project/node_modules/@types: - {"fileName":"c:/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: c:/project: - {"directoryName":"c:/project"} + {} 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 679d31d4c82f3..75260189c15bb 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-root.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-root.js @@ -47,18 +47,18 @@ Open files: Projects: c:/myfolder/allproject/project/tsconfig.json WatchedFiles:: c:/myfolder/allproject/project/tsconfig.json: - {"fileName":"c:/myfolder/allproject/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} c:/myfolder/allproject/project/file2.ts: - {"fileName":"c:/myfolder/allproject/project/file2.ts","pollingInterval":250} + {"pollingInterval":250} c:/a/lib/lib.d.ts: - {"fileName":"c:/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} c:/myfolder/allproject/project/node_modules/@types: - {"fileName":"c:/myfolder/allproject/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} c:/myfolder/allproject/node_modules/@types: - {"fileName":"c:/myfolder/allproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: c:/myfolder/allproject/project: - {"directoryName":"c:/myfolder/allproject/project"} + {} 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 679d31d4c82f3..75260189c15bb 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 @@ -47,18 +47,18 @@ Open files: Projects: c:/myfolder/allproject/project/tsconfig.json WatchedFiles:: c:/myfolder/allproject/project/tsconfig.json: - {"fileName":"c:/myfolder/allproject/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} c:/myfolder/allproject/project/file2.ts: - {"fileName":"c:/myfolder/allproject/project/file2.ts","pollingInterval":250} + {"pollingInterval":250} c:/a/lib/lib.d.ts: - {"fileName":"c:/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} c:/myfolder/allproject/project/node_modules/@types: - {"fileName":"c:/myfolder/allproject/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} c:/myfolder/allproject/node_modules/@types: - {"fileName":"c:/myfolder/allproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: FsWatchesRecursive:: c:/myfolder/allproject/project: - {"directoryName":"c:/myfolder/allproject/project"} + {} 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 12bef2d424d2b..f2cc66c64357f 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 @@ -42,18 +42,18 @@ Open files: Projects: /dev/null/inferredProject1* WatchedFiles:: /user/username/projects/myproject/src/tsconfig.json: - {"fileName":"/user/username/projects/myproject/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/jsconfig.json: - {"fileName":"/user/username/projects/myproject/src/jsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/jsconfig.json: - {"fileName":"/user/username/projects/myproject/jsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} 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 ae74ecb6e3fb7..3834bae44eb1c 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options.js @@ -42,20 +42,20 @@ Open files: Projects: /dev/null/inferredProject1* WatchedFiles:: /user/username/projects/myproject/src/tsconfig.json: - {"fileName":"/user/username/projects/myproject/src/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/src/jsconfig.json: - {"fileName":"/user/username/projects/myproject/src/jsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/jsconfig.json: - {"fileName":"/user/username/projects/myproject/jsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} + {} 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 ada11a9f9cce4..a498c6ed53e81 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 @@ -32,15 +32,15 @@ Open files: Projects: /dev/null/inferredProject1* WatchedFiles:: /user/username/projects/i/tsconfig.json: - {"fileName":"/User/userName/Projects/i/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/i/jsconfig.json: - {"fileName":"/User/userName/Projects/i/jsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/i/node_modules: - {"fileName":"/User/userName/Projects/i/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/i/node_modules/@types: - {"fileName":"/User/userName/Projects/i/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 80792d4de2667..7daad74a39316 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 @@ -32,15 +32,15 @@ Open files: Projects: /dev/null/inferredProject1* WatchedFiles:: /user/username/projects/i/tsconfig.json: - {"fileName":"/User/userName/Projects/I/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/i/jsconfig.json: - {"fileName":"/User/userName/Projects/I/jsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/i/node_modules: - {"fileName":"/User/userName/Projects/I/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/i/node_modules/@types: - {"fileName":"/User/userName/Projects/I/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 8a6d9091c80a7..ccc038ce0d793 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 @@ -32,15 +32,15 @@ Open files: Projects: /dev/null/inferredProject1* WatchedFiles:: /user/username/projects/İ/tsconfig.json: - {"fileName":"/User/userName/Projects/İ/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/İ/jsconfig.json: - {"fileName":"/User/userName/Projects/İ/jsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/İ/node_modules: - {"fileName":"/User/userName/Projects/İ/node_modules","pollingInterval":500} + {"pollingInterval":500} /user/username/projects/İ/node_modules/@types: - {"fileName":"/User/userName/Projects/İ/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 48ae8e35c6894..f625139ccc4c2 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 @@ -49,140 +49,140 @@ Open files: Projects: /a/username/project/tsconfig.json WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/username/project/src/file1.ts: - {"fileName":"/a/username/project/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/username/project/node_modules/@types: - {"fileName":"/a/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /a/username/project: - {"directoryName":"/a/username/project"} + {} /a/username/project/node_modules: - {"directoryName":"/a/username/project/node_modules"} + {} /a/username/project/src: - {"directoryName":"/a/username/project/src"} + {} FsWatchesRecursive:: WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/username/project/src/file1.ts: - {"fileName":"/a/username/project/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/username/project/node_modules/@types: - {"fileName":"/a/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /a/username/project: - {"directoryName":"/a/username/project"} + {} /a/username/project/node_modules: - {"directoryName":"/a/username/project/node_modules"} + {} /a/username/project/src: - {"directoryName":"/a/username/project/src"} + {} FsWatchesRecursive:: WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/username/project/src/file1.ts: - {"fileName":"/a/username/project/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/username/project/node_modules/@types: - {"fileName":"/a/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /a/username/project: - {"directoryName":"/a/username/project"} + {} /a/username/project/node_modules: - {"directoryName":"/a/username/project/node_modules"} + {} /a/username/project/src: - {"directoryName":"/a/username/project/src"} + {} FsWatchesRecursive:: WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/username/project/src/file1.ts: - {"fileName":"/a/username/project/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/username/project/node_modules/@types: - {"fileName":"/a/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /a/username/project: - {"directoryName":"/a/username/project"} + {} /a/username/project/node_modules: - {"directoryName":"/a/username/project/node_modules"} + {} /a/username/project/src: - {"directoryName":"/a/username/project/src"} + {} FsWatchesRecursive:: WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/username/project/src/file1.ts: - {"fileName":"/a/username/project/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/username/project/node_modules/@types: - {"fileName":"/a/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /a/username/project: - {"directoryName":"/a/username/project"} + {} /a/username/project/node_modules: - {"directoryName":"/a/username/project/node_modules"} + {} /a/username/project/src: - {"directoryName":"/a/username/project/src"} + {} FsWatchesRecursive:: WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/username/project/src/file1.ts: - {"fileName":"/a/username/project/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/username/project/node_modules/@types: - {"fileName":"/a/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /a/username/project: - {"directoryName":"/a/username/project"} + {} /a/username/project/node_modules: - {"directoryName":"/a/username/project/node_modules"} + {} /a/username/project/src: - {"directoryName":"/a/username/project/src"} + {} FsWatchesRecursive:: WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/username/project/src/file1.ts: - {"fileName":"/a/username/project/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/username/project/node_modules/@types: - {"fileName":"/a/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /a/username/project: - {"directoryName":"/a/username/project"} + {} /a/username/project/node_modules: - {"directoryName":"/a/username/project/node_modules"} + {} /a/username/project/src: - {"directoryName":"/a/username/project/src"} + {} FsWatchesRecursive:: 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 90b4f12b42f30..07e857407bbd2 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 @@ -54,11 +54,11 @@ Open files: Completion Entries:: ["file1"] WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/username/project/src/file1.ts: - {"fileName":"/a/username/project/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: @@ -97,13 +97,13 @@ Project '/a/username/project/tsconfig.json' (Configured) Completion Entries:: ["file1","file2"] WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/username/project/src/file1.ts: - {"fileName":"/a/username/project/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/username/project/src/file2.ts: - {"fileName":"/a/username/project/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 05654346353e9..d4ca7f9f86ea2 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 @@ -54,19 +54,19 @@ Open files: Completion Entries:: ["file1"] WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/username/project/src/file1.ts: - {"fileName":"/a/username/project/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/username/project/node_modules/@types: - {"fileName":"/a/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /a/username/project: - {"directoryName":"/a/username/project"} + {} /a/username/project/src: - {"directoryName":"/a/username/project/src"} + {} FsWatchesRecursive:: @@ -120,20 +120,20 @@ Open files: Completion Entries:: ["file1","file2"] WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/username/project/src/file1.ts: - {"fileName":"/a/username/project/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/username/project/node_modules/@types: - {"fileName":"/a/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/username/project/src/file2.ts: - {"fileName":"/a/username/project/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: /a/username/project: - {"directoryName":"/a/username/project"} + {} /a/username/project/src: - {"directoryName":"/a/username/project/src"} + {} FsWatchesRecursive:: 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 460ba5c30b80b..2cb34b825fc89 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 @@ -54,17 +54,17 @@ Open files: Completion Entries:: ["file1"] WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/username/project: - {"fileName":"/a/username/project","pollingInterval":500} + {"pollingInterval":500} /a/username/project/src: - {"fileName":"/a/username/project/src","pollingInterval":500} + {"pollingInterval":500} /a/username/project/src/file1.ts: - {"fileName":"/a/username/project/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/username/project/node_modules/@types: - {"fileName":"/a/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -104,19 +104,19 @@ Project '/a/username/project/tsconfig.json' (Configured) Completion Entries:: ["file1","file2"] WatchedFiles:: /a/username/project/tsconfig.json: - {"fileName":"/a/username/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/username/project: - {"fileName":"/a/username/project","pollingInterval":500} + {"pollingInterval":500} /a/username/project/src: - {"fileName":"/a/username/project/src","pollingInterval":500} + {"pollingInterval":500} /a/username/project/src/file1.ts: - {"fileName":"/a/username/project/src/file1.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/username/project/node_modules/@types: - {"fileName":"/a/username/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} /a/username/project/src/file2.ts: - {"fileName":"/a/username/project/src/file2.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: 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 5906c042eb1ee..2a6d198172573 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 @@ -31,13 +31,13 @@ Open files: Projects: /dev/null/inferredProject1* WatchedFiles:: c:/myprojects/project/tsconfig.json: - {"fileName":"c:/myprojects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} c:/myprojects/project/jsconfig.json: - {"fileName":"c:/myprojects/project/jsconfig.json","pollingInterval":250} + {"pollingInterval":250} c:/a/lib/lib.d.ts: - {"fileName":"c:/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} c:/myprojects/project/node_modules/@types: - {"fileName":"c:/myprojects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -76,13 +76,13 @@ Open files: Projects: /dev/null/inferredProject1* WatchedFiles:: //vda1cs4850/myprojects/project/tsconfig.json: - {"fileName":"//vda1cs4850/myprojects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} //vda1cs4850/myprojects/project/jsconfig.json: - {"fileName":"//vda1cs4850/myprojects/project/jsconfig.json","pollingInterval":250} + {"pollingInterval":250} //vda1cs4850/a/lib/lib.d.ts: - {"fileName":"//vda1cs4850/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} //vda1cs4850/myprojects/project/node_modules/@types: - {"fileName":"//vda1cs4850/myprojects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -121,13 +121,13 @@ Open files: Projects: /dev/null/inferredProject1* WatchedFiles:: //vda1cs4850/c$/myprojects/project/tsconfig.json: - {"fileName":"//vda1cs4850/c$/myprojects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} //vda1cs4850/c$/myprojects/project/jsconfig.json: - {"fileName":"//vda1cs4850/c$/myprojects/project/jsconfig.json","pollingInterval":250} + {"pollingInterval":250} //vda1cs4850/a/lib/lib.d.ts: - {"fileName":"//vda1cs4850/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} //vda1cs4850/c$/myprojects/project/node_modules/@types: - {"fileName":"//vda1cs4850/c$/myprojects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -166,13 +166,13 @@ Open files: Projects: /dev/null/inferredProject1* WatchedFiles:: c:/users/username/myprojects/project/tsconfig.json: - {"fileName":"c:/users/username/myprojects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} c:/users/username/myprojects/project/jsconfig.json: - {"fileName":"c:/users/username/myprojects/project/jsconfig.json","pollingInterval":250} + {"pollingInterval":250} c:/a/lib/lib.d.ts: - {"fileName":"c:/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} c:/users/username/myprojects/project/node_modules/@types: - {"fileName":"c:/users/username/myprojects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: @@ -211,13 +211,13 @@ Open files: Projects: /dev/null/inferredProject1* WatchedFiles:: //vda1cs4850/c$/users/username/myprojects/project/tsconfig.json: - {"fileName":"//vda1cs4850/c$/users/username/myprojects/project/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} //vda1cs4850/c$/users/username/myprojects/project/jsconfig.json: - {"fileName":"//vda1cs4850/c$/users/username/myprojects/project/jsconfig.json","pollingInterval":250} + {"pollingInterval":250} //vda1cs4850/a/lib/lib.d.ts: - {"fileName":"//vda1cs4850/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} //vda1cs4850/c$/users/username/myprojects/project/node_modules/@types: - {"fileName":"//vda1cs4850/c$/users/username/myprojects/project/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: diff --git a/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-can-create-multiple-watchers-per-file.js b/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-can-create-multiple-watchers-per-file.js index e992f13ccb82d..81126ed642ef2 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-can-create-multiple-watchers-per-file.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-can-create-multiple-watchers-per-file.js @@ -54,18 +54,18 @@ Open files: response:{"responseRequired":false} WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":500} - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} + {"pollingInterval":500} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} 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 0ee1d784c88c9..e43b2d59884d6 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 @@ -54,16 +54,16 @@ Open files: response:{"responseRequired":false} WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: - {"fileName":"/user/username/projects/myproject/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} FsWatchesRecursive:: /user/username/projects/myproject: - {"directoryName":"/user/username/projects/myproject"} + {} 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 fbc151f36639c..6a140b32f5daa 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 @@ -57,15 +57,15 @@ Open files: Projects: /user/username/projects/myproject/tsconfig.json WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} - {"directoryName":"/user/username/projects/myproject/src"} + {} + {} /user/username/projects/myproject/node_modules: - {"directoryName":"/user/username/projects/myproject/node_modules"} + {} 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 b3ac931bf7e50..334e0e03adeb7 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 @@ -57,13 +57,13 @@ Open files: Projects: /user/username/projects/myproject/tsconfig.json WatchedFiles:: /user/username/projects/myproject/tsconfig.json: - {"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: - {"directoryName":"/user/username/projects/myproject/src"} - {"directoryName":"/user/username/projects/myproject/src"} + {} + {} 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 6d784ae6cb7c7..690c88a2f24b4 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 @@ -52,15 +52,15 @@ Open files: response:{"responseRequired":false} WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b: - {"fileName":"/a/b","pollingInterval":500} + {"pollingInterval":500} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 01eabf6de1acb..5e23e449e40fe 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 @@ -55,15 +55,15 @@ Open files: response:{"responseRequired":false} WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b: - {"fileName":"/a/b","pollingInterval":500} + {"pollingInterval":500} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: 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 45b784630998c..3e518106e3ed4 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 @@ -52,16 +52,16 @@ Open files: response:{"responseRequired":false} WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /a/b: - {"directoryName":"/a/b"} + {} FsWatchesRecursive:: 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 30a0adba33100..9c76c980067cf 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 @@ -52,16 +52,16 @@ Open files: response:{"responseRequired":false} WatchedFiles:: /a/b/tsconfig.json: - {"fileName":"/a/b/tsconfig.json","pollingInterval":250} + {"pollingInterval":250} /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /a/b: - {"directoryName":"/a/b"} + {} FsWatchesRecursive:: 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 2fbf1d2ecb62f..8f148532cb579 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 @@ -52,16 +52,16 @@ Open files: response:{"responseRequired":false} WatchedFiles:: /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /a/b/tsconfig.json: - {"directoryName":"/a/b/tsconfig.json"} + {} /a/b/commonfile2.ts: - {"directoryName":"/a/b/commonFile2.ts"} + {} /a/lib/lib.d.ts: - {"directoryName":"/a/lib/lib.d.ts"} + {} FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} 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 6eeaaaaf7eeab..e779a749d50aa 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 @@ -52,16 +52,16 @@ Open files: response:{"responseRequired":false} WatchedFiles:: /a/b/commonfile2.ts: - {"fileName":"/a/b/commonFile2.ts","pollingInterval":250} + {"pollingInterval":250} /a/lib/lib.d.ts: - {"fileName":"/a/lib/lib.d.ts","pollingInterval":250} + {"pollingInterval":250} /a/b/node_modules/@types: - {"fileName":"/a/b/node_modules/@types","pollingInterval":500} + {"pollingInterval":500} FsWatches:: /a/b/tsconfig.json: - {"directoryName":"/a/b/tsconfig.json"} + {} FsWatchesRecursive:: /a/b: - {"directoryName":"/a/b"} + {} From 956ee00cdab8eab6c505891d8a559eb50dec8925 Mon Sep 17 00:00:00 2001 From: Sheetal Nandi Date: Mon, 15 Aug 2022 14:14:09 -0700 Subject: [PATCH 3/8] Polled watches and not files --- src/harness/virtualFileSystemWithWatch.ts | 2 +- ...project-correctly-with-preserveSymlinks.js | 2 +- ...-file-from-referenced-project-correctly.js | 2 +- .../reports-syntax-errors-in-config-file.js | 10 ++--- .../demo/updates-with-bad-reference.js | 4 +- .../demo/updates-with-circular-reference.js | 4 +- ...for-changes-to-package-json-main-fields.js | 6 +-- ...t-correctly-with-cts-and-mts-extensions.js | 10 ++--- ...se-different-module-resolution-settings.js | 4 +- ...n-no-files-are-emitted-with-incremental.js | 6 +-- ...when-watching-when-no-files-are-emitted.js | 6 +-- ...mit-any-files-on-error-with-incremental.js | 14 +++--- .../does-not-emit-any-files-on-error.js | 14 +++--- .../creates-solution-in-watch-mode.js | 2 +- .../incremental-updates-in-verbose-mode.js | 6 +-- .../when-file-with-no-error-changes.js | 6 +-- ...ing-errors-only-changed-file-is-emitted.js | 6 +-- .../when-file-with-no-error-changes.js | 4 +- ...ixing-error-files-all-files-are-emitted.js | 4 +- .../when-preserveWatchOutput-is-not-used.js | 6 +-- ...veWatchOutput-is-passed-on-command-line.js | 6 +-- ...e-of-program-emit-with-outDir-specified.js | 8 ++-- ...r-recompilation-because-of-program-emit.js | 8 ++-- .../programUpdates/tsbuildinfo-has-error.js | 2 +- ...-references-watches-only-those-projects.js | 2 +- ...tches-config-files-that-are-not-present.js | 6 +-- ...e-down-stream-project-and-then-fixes-it.js | 6 +-- ...ncing-project-even-for-non-local-change.js | 10 ++--- ...le-is-added,-and-its-subsequent-updates.js | 10 ++--- ...hanges-and-reports-found-errors-message.js | 14 +++--- ...not-start-build-of-referencing-projects.js | 4 +- ...le-is-added,-and-its-subsequent-updates.js | 10 ++--- ...hanges-and-reports-found-errors-message.js | 14 +++--- ...not-start-build-of-referencing-projects.js | 4 +- ...project-with-extended-config-is-removed.js | 4 +- ...hen-noUnusedParameters-changes-to-false.js | 4 +- .../works-with-extended-source-files.js | 14 +++--- ...hen-there-are-23-projects-in-a-solution.js | 44 +++++++++---------- ...when-there-are-3-projects-in-a-solution.js | 12 ++--- ...when-there-are-5-projects-in-a-solution.js | 12 ++--- ...when-there-are-8-projects-in-a-solution.js | 24 +++++----- .../publicApi/with-custom-transformers.js | 4 +- .../reexport/Reports-errors-correctly.js | 6 +-- ...e-projects-with-single-watcher-per-file.js | 12 ++--- .../same-file-in-multiple-projects.js | 12 ++--- .../when-emitting-buildInfo.js | 8 ++-- .../tsc/cancellationToken/when-using-state.js | 8 ++-- ...rough-indirect-symlink-moduleCaseChange.js | 2 +- ...ibling-package-through-indirect-symlink.js | 2 +- ...ther-symlinked-package-moduleCaseChange.js | 2 +- ...age-with-indirect-link-moduleCaseChange.js | 2 +- ...er-symlinked-package-with-indirect-link.js | 2 +- ...gh-source-and-another-symlinked-package.js | 2 +- .../createWatchOfConfigFile.js | 4 +- ...Result-on-WatchCompilerHostOfConfigFile.js | 4 +- .../consoleClearing/with---diagnostics.js | 4 +- .../with---extendedDiagnostics.js | 4 +- .../with---preserveWatchOutput.js | 4 +- ...---diagnostics-or---extendedDiagnostics.js | 4 +- ...ms-correctly-in-incremental-compilation.js | 4 +- ...s-deleted-and-created-as-part-of-change.js | 4 +- ...ndles-new-lines-carriageReturn-lineFeed.js | 4 +- .../handles-new-lines-lineFeed.js | 4 +- .../should-emit-specified-file.js | 6 +-- ...elf-if-'--isolatedModules'-is-specified.js | 4 +- ...-if-'--out'-or-'--outFile'-is-specified.js | 4 +- ...should-be-up-to-date-with-deleted-files.js | 4 +- ...-be-up-to-date-with-newly-created-files.js | 4 +- ...-to-date-with-the-reference-map-changes.js | 12 ++--- ...les-referencing-it-if-its-shape-changed.js | 6 +-- ...should-detect-changes-in-non-root-files.js | 6 +-- .../should-detect-non-existing-code-file.js | 6 +-- .../should-detect-removed-code-file.js | 4 +- ...ll-files-if-a-global-file-changed-shape.js | 4 +- ...ould-return-cascaded-affected-file-list.js | 8 ++-- ...fine-for-files-with-circular-references.js | 4 +- .../config-does-not-have-out-or-outFile.js | 6 +-- .../config-has-out.js | 6 +-- .../config-has-outFile.js | 6 +-- ...ltiple-declaration-files-in-the-program.js | 2 +- ...ltiple-declaration-files-in-the-program.js | 2 +- ...-recursive-directory-watcher-is-invoked.js | 4 +- ...rrors-for-.d.ts-change-with-incremental.js | 8 ++-- .../errors-for-.d.ts-change.js | 8 ++-- .../errors-for-.ts-change-with-incremental.js | 8 ++-- .../errors-for-.ts-change.js | 8 ++-- ...el-import-that-changes-with-incremental.js | 8 ++-- ...g-a-deep-multilevel-import-that-changes.js | 8 ++-- .../export-with-incremental.js | 8 ++-- .../no-circular-import/export.js | 8 ++-- .../exports-with-incremental.js | 8 ++-- .../yes-circular-import/exports.js | 8 ++-- .../with-noEmitOnError-with-incremental.js | 14 +++--- .../with-noEmitOnError.js | 14 +++--- ...rrors-for-.d.ts-change-with-incremental.js | 8 ++-- .../errors-for-.d.ts-change.js | 8 ++-- .../errors-for-.ts-change-with-incremental.js | 8 ++-- .../errors-for-.ts-change.js | 8 ++-- ...el-import-that-changes-with-incremental.js | 8 ++-- ...g-a-deep-multilevel-import-that-changes.js | 8 ++-- .../export-with-incremental.js | 8 ++-- .../no-circular-import/export.js | 8 ++-- .../exports-with-incremental.js | 8 ++-- .../yes-circular-import/exports.js | 8 ++-- .../with-noEmitOnError-with-incremental.js | 14 +++--- .../with-noEmitOnError.js | 14 +++--- ...rrors-for-.d.ts-change-with-incremental.js | 8 ++-- .../errors-for-.d.ts-change.js | 8 ++-- .../errors-for-.ts-change-with-incremental.js | 8 ++-- .../errors-for-.ts-change.js | 8 ++-- ...el-import-that-changes-with-incremental.js | 8 ++-- ...g-a-deep-multilevel-import-that-changes.js | 8 ++-- .../export-with-incremental.js | 8 ++-- .../no-circular-import/export.js | 8 ++-- .../exports-with-incremental.js | 8 ++-- .../yes-circular-import/exports.js | 8 ++-- .../with-noEmitOnError-with-incremental.js | 14 +++--- .../default/with-noEmitOnError.js | 14 +++--- ...rrors-for-.d.ts-change-with-incremental.js | 8 ++-- .../errors-for-.d.ts-change.js | 8 ++-- .../errors-for-.ts-change-with-incremental.js | 8 ++-- .../errors-for-.ts-change.js | 8 ++-- ...el-import-that-changes-with-incremental.js | 8 ++-- ...g-a-deep-multilevel-import-that-changes.js | 8 ++-- .../export-with-incremental.js | 8 ++-- .../no-circular-import/export.js | 8 ++-- .../exports-with-incremental.js | 8 ++-- .../yes-circular-import/exports.js | 8 ++-- .../with-noEmitOnError-with-incremental.js | 14 +++--- .../defaultAndD/with-noEmitOnError.js | 14 +++--- ...rrors-for-.d.ts-change-with-incremental.js | 8 ++-- .../errors-for-.d.ts-change.js | 8 ++-- .../errors-for-.ts-change-with-incremental.js | 8 ++-- .../errors-for-.ts-change.js | 8 ++-- ...el-import-that-changes-with-incremental.js | 8 ++-- ...g-a-deep-multilevel-import-that-changes.js | 8 ++-- .../export-with-incremental.js | 8 ++-- .../no-circular-import/export.js | 8 ++-- .../exports-with-incremental.js | 8 ++-- .../yes-circular-import/exports.js | 8 ++-- .../with-noEmitOnError-with-incremental.js | 14 +++--- .../isolatedModules/with-noEmitOnError.js | 14 +++--- ...rrors-for-.d.ts-change-with-incremental.js | 8 ++-- .../errors-for-.d.ts-change.js | 8 ++-- .../errors-for-.ts-change-with-incremental.js | 8 ++-- .../errors-for-.ts-change.js | 8 ++-- ...el-import-that-changes-with-incremental.js | 8 ++-- ...g-a-deep-multilevel-import-that-changes.js | 8 ++-- .../export-with-incremental.js | 8 ++-- .../no-circular-import/export.js | 8 ++-- .../exports-with-incremental.js | 8 ++-- .../yes-circular-import/exports.js | 8 ++-- .../with-noEmitOnError-with-incremental.js | 14 +++--- .../isolatedModulesAndD/with-noEmitOnError.js | 14 +++--- .../jsxImportSource-option-changed.js | 2 +- ...n-Windows-style-drive-root-is-lowercase.js | 4 +- ...n-Windows-style-drive-root-is-uppercase.js | 4 +- ...ry-symlink-target-and-import-match-disk.js | 4 +- ...le-symlink-target-and-import-match-disk.js | 4 +- ...nging-module-name-with-different-casing.js | 4 +- ...target-matches-disk-but-import-does-not.js | 4 +- ...target-matches-disk-but-import-does-not.js | 4 +- ...link-target,-and-disk-are-all-different.js | 4 +- ...link-target,-and-disk-are-all-different.js | 4 +- ...link-target-agree-but-do-not-match-disk.js | 4 +- ...link-target-agree-but-do-not-match-disk.js | 4 +- ...k-but-directory-symlink-target-does-not.js | 4 +- ...s-disk-but-file-symlink-target-does-not.js | 4 +- ...ative-information-file-location-changes.js | 4 +- ...hen-renaming-file-with-different-casing.js | 4 +- ...editing-module-augmentation-incremental.js | 4 +- .../editing-module-augmentation-watch.js | 4 +- ...lpers-backing-types-removed-incremental.js | 4 +- ...portHelpers-backing-types-removed-watch.js | 4 +- ...al-with-circular-references-incremental.js | 4 +- ...remental-with-circular-references-watch.js | 4 +- ...tSource-backing-types-added-incremental.js | 4 +- ...xImportSource-backing-types-added-watch.js | 4 +- ...ource-backing-types-removed-incremental.js | 4 +- ...mportSource-backing-types-removed-watch.js | 4 +- ...ImportSource-option-changed-incremental.js | 4 +- .../jsxImportSource-option-changed-watch.js | 4 +- .../own-file-emit-with-errors-incremental.js | 4 +- .../own-file-emit-with-errors-watch.js | 4 +- ...wn-file-emit-without-errors-incremental.js | 4 +- .../own-file-emit-without-errors-watch.js | 4 +- .../with---out-incremental.js | 2 +- .../module-compilation/with---out-watch.js | 2 +- .../own-file-emit-with-errors-incremental.js | 4 +- .../own-file-emit-with-errors-watch.js | 4 +- ...eters-that-are-not-relative-incremental.js | 4 +- ...-parameters-that-are-not-relative-watch.js | 4 +- ...without-commandline-options-incremental.js | 4 +- .../without-commandline-options-watch.js | 4 +- .../incremental/tsbuildinfo-has-error.js | 2 +- ...declaration-file-is-deleted-incremental.js | 4 +- ...lobal-declaration-file-is-deleted-watch.js | 4 +- .../incremental/with---out-incremental.js | 2 +- .../tscWatch/incremental/with---out-watch.js | 2 +- .../diagnostics-from-cache.js | 2 +- ...en-package-json-with-type-module-exists.js | 12 ++--- .../package-json-file-is-edited.js | 12 ++--- ...for-changes-to-package-json-main-fields.js | 6 +-- .../esm-mode-file-is-edited.js | 4 +- ...nerated-when-the-config-file-has-errors.js | 2 +- ...configFile-contents-when-options-change.js | 4 +- ...rs-document-is-not-contained-in-project.js | 2 +- ...rts-errors-when-the-config-file-changes.js | 6 +-- ...nostics-when-'--noUnusedLabels'-changes.js | 6 +-- ...-a-configured-program-without-file-list.js | 4 +- ...hould-remove-the-module-not-found-error.js | 4 +- ...has-changed-(new-file-in-list-of-files).js | 4 +- ...ot-files-has-changed-(new-file-on-disk).js | 4 +- ...-root-files-has-changed-through-include.js | 4 +- ...config-file-name-with-difference-casing.js | 2 +- ...-when-set-of-root-files-was-not-changed.js | 4 +- .../programUpdates/change-module-to-none.js | 4 +- ...iles-are-reflected-in-project-structure.js | 4 +- .../config-file-includes-the-file.js | 2 +- .../programUpdates/config-file-is-deleted.js | 4 +- ...s-changes-in-lib-section-of-config-file.js | 4 +- ...keys-differ-only-in-directory-seperator.js | 6 +-- ...te-configured-project-without-file-list.js | 2 +- .../create-watch-without-config-file.js | 2 +- ...eleted-files-affect-project-structure-2.js | 4 +- .../deleted-files-affect-project-structure.js | 4 +- .../extended-source-files-are-watched.js | 10 ++--- .../file-in-files-is-deleted.js | 4 +- ...iles-explicitly-excluded-in-config-file.js | 2 +- .../handle-recreated-files-correctly.js | 8 ++-- ...se-they-were-added-with-tripleSlashRefs.js | 4 +- ...esnt-have-errors,-they-are-not-reported.js | 2 +- ...ndle-@types-if-input-file-list-is-empty.js | 2 +- ...e-tolerated-without-crashing-the-server.js | 2 +- ...tore-the-states-for-configured-projects.js | 6 +-- ...estore-the-states-for-inferred-projects.js | 6 +-- ...rors-correctly-with-file-not-in-rootDir.js | 4 +- ...s-errors-correctly-with-isolatedModules.js | 4 +- ...non-existing-directories-in-config-file.js | 2 +- ...ting-files-specified-in-the-config-file.js | 2 +- .../declarationDir-is-specified.js | 8 ++-- ...-outDir-and-declarationDir-is-specified.js | 8 ++-- .../when-outDir-is-specified.js | 8 ++-- .../with-outFile.js | 8 ++-- ...e-is-specified-with-declaration-enabled.js | 8 ++-- .../without-outDir-or-outFile-is-specified.js | 8 ++-- ...odule-resolution-changes-in-config-file.js | 4 +- .../should-reflect-change-in-config-file.js | 6 +-- ...should-support-files-without-extensions.js | 2 +- ...errors-and-still-try-to-build-a-project.js | 2 +- ...when-file-changes-from-global-to-module.js | 4 +- ...programs-are-not-affected-by-each-other.js | 4 +- ...-from-config-file-path-if-config-exists.js | 2 +- ...tes-diagnostics-and-emit-for-decorators.js | 6 +-- ...it-when-useDefineForClassFields-changes.js | 4 +- .../updates-emit-on-jsx-option-change.js | 4 +- ...mit-when-importsNotUsedAsValues-changes.js | 8 ++-- ...on-emit-is-disabled-in-compiler-options.js | 10 ++--- .../with-default-options.js | 6 +-- .../with-skipDefaultLibCheck.js | 6 +-- .../with-skipLibCheck.js | 6 +-- .../with-default-options.js | 6 +-- .../with-skipDefaultLibCheck.js | 6 +-- .../with-skipLibCheck.js | 6 +-- ...when-ambient-modules-of-program-changes.js | 6 +-- ...orceConsistentCasingInFileNames-changes.js | 4 +- ...s-errors-when-noErrorTruncation-changes.js | 4 +- ...es-errors-when-strictNullChecks-changes.js | 8 ++-- ...solution-when-resolveJsonModule-changes.js | 4 +- ...and-new-file-is-added-as-part-of-change.js | 4 +- .../when-creating-extensionless-file.js | 4 +- ...n-creating-new-file-in-symlinked-folder.js | 4 +- ...file-is-added-to-the-referenced-project.js | 12 ++--- ...ibCheck-and-skipDefaultLibCheck-changes.js | 14 +++--- ...-file-is-changed-but-its-content-havent.js | 4 +- .../on-sample-project.js | 8 ++-- ...-different-folders-with-no-files-clause.js | 20 ++++----- ...nsitive-references-in-different-folders.js | 20 ++++----- .../on-transitive-references.js | 20 ++++----- ...roject-uses-different-module-resolution.js | 2 +- .../tscWatch/resolutionCache/caching-works.js | 8 ++-- .../watch-with-configFile.js | 4 +- .../watch-without-configFile.js | 4 +- .../loads-missing-files-from-disk.js | 4 +- ...module-goes-missing-and-then-comes-back.js | 6 +-- ...are-global-and-installed-at-later-point.js | 6 +-- .../with-modules-linked-to-sibling-folder.js | 2 +- ...cluded-file-with-ambient-module-changes.js | 4 +- ...-no-notification-from-fs-for-index-file.js | 10 ++--- ...le-resolution-changes-to-ambient-module.js | 4 +- ...der-that-already-contains-@types-folder.js | 4 +- ...rogram-with-files-from-external-library.js | 4 +- ...es-field-when-solution-is-already-built.js | 2 +- ...Symlinks-when-solution-is-already-built.js | 2 +- ...n-has-types-field-with-preserveSymlinks.js | 2 +- ...-package-when-solution-is-already-built.js | 2 +- ...Symlinks-when-solution-is-already-built.js | 2 +- ...th-scoped-package-with-preserveSymlinks.js | 2 +- ...son-has-types-field-with-scoped-package.js | 2 +- .../when-packageJson-has-types-field.js | 2 +- ...ubFolder-when-solution-is-already-built.js | 2 +- ...Symlinks-when-solution-is-already-built.js | 2 +- ...le-from-subFolder-with-preserveSymlinks.js | 2 +- ...-package-when-solution-is-already-built.js | 2 +- ...Symlinks-when-solution-is-already-built.js | 2 +- ...th-scoped-package-with-preserveSymlinks.js | 2 +- ...file-from-subFolder-with-scoped-package.js | 2 +- .../when-referencing-file-from-subFolder.js | 2 +- ...-project-when-solution-is-already-built.js | 2 +- .../with-simple-project.js | 2 +- .../extraFileExtensions-are-supported.js | 4 +- ...noEmit-with-composite-with-emit-builder.js | 10 ++--- ...it-with-composite-with-semantic-builder.js | 10 ++--- ...nError-with-composite-with-emit-builder.js | 6 +-- ...or-with-composite-with-semantic-builder.js | 6 +-- .../watchApi/semantic-builder-emitOnlyDts.js | 4 +- ...createSemanticDiagnosticsBuilderProgram.js | 4 +- ...n-works-when-returned-without-extension.js | 2 +- ...assed-down-to-the-watch-status-reporter.js | 2 +- ...ing-useSourceOfProjectReferenceRedirect.js | 12 ++--- ...-host-implementing-getParsedCommandLine.js | 8 ++-- ...-timesouts-on-host-program-gets-updated.js | 4 +- ...inode-when-rename-event-ends-with-tilde.js | 6 +-- ...e-occurs-when-file-is-still-on-the-disk.js | 6 +-- ...when-using-file-watching-thats-on-inode.js | 6 +-- ...e-occurs-when-file-is-still-on-the-disk.js | 6 +-- ...polling-when-renaming-file-in-subfolder.js | 4 +- ...rectory-when-renaming-file-in-subfolder.js | 4 +- ...tchFile-when-renaming-file-in-subfolder.js | 4 +- ...ymlinks-to-folders-in-recursive-folders.js | 2 +- ...hronous-watch-directory-renaming-a-file.js | 8 ++-- ...ory-with-outDir-and-declaration-enabled.js | 12 ++--- .../with-non-synchronous-watch-directory.js | 20 ++++----- ...lt-as-fixed-chunk-size-watch-file-works.js | 6 +-- .../using-dynamic-priority-polling.js | 10 ++--- .../using-fixed-chunk-size-polling.js | 10 ++--- ...eDirectories-option-extendedDiagnostics.js | 4 +- ...-directory-watching-extendedDiagnostics.js | 6 +-- ...ption-with-recursive-directory-watching.js | 6 +-- .../with-excludeDirectories-option.js | 4 +- ...excludeFiles-option-extendedDiagnostics.js | 4 +- .../watchOptions/with-excludeFiles-option.js | 4 +- .../with-fallbackPolling-option.js | 2 +- .../with-watchDirectory-option.js | 2 +- ...th-watchFile-as-watch-options-to-extend.js | 2 +- .../watchOptions/with-watchFile-option.js | 2 +- ...ect-watch-options-in-host-configuration.js | 2 +- .../external-project-watch-options.js | 2 +- .../watchEnvironment/files-at-root.js | 2 +- .../files-at-windows-style-root.js | 2 +- .../watchEnvironment/files-not-at-root.js | 2 +- .../files-not-at-windows-style-root.js | 2 +- ...ect-watch-options-in-host-configuration.js | 2 +- .../inferred-project-watch-options.js | 2 +- .../project-with-ascii-file-names-with-i.js | 2 +- .../project-with-ascii-file-names.js | 2 +- .../project-with-unicode-file-names.js | 2 +- ...files-starting-with-dot-in-node_modules.js | 14 +++--- ...polling-when-file-is-added-to-subfolder.js | 4 +- ...rectory-when-file-is-added-to-subfolder.js | 4 +- ...tchFile-when-file-is-added-to-subfolder.js | 4 +- ...watching-files-with-network-style-paths.js | 10 ++--- ...e-can-create-multiple-watchers-per-file.js | 2 +- ...en-watchFile-is-single-watcher-per-file.js | 2 +- ...excludeDirectories-option-in-configFile.js | 2 +- ...ludeDirectories-option-in-configuration.js | 2 +- ...ackPolling-option-as-host-configuration.js | 2 +- ...th-fallbackPolling-option-in-configFile.js | 2 +- ...hDirectory-option-as-host-configuration.js | 2 +- ...ith-watchDirectory-option-in-configFile.js | 2 +- ...-watchFile-option-as-host-configuration.js | 2 +- .../with-watchFile-option-in-configFile.js | 2 +- 372 files changed, 1096 insertions(+), 1096 deletions(-) diff --git a/src/harness/virtualFileSystemWithWatch.ts b/src/harness/virtualFileSystemWithWatch.ts index 451cfd9e49b38..34abdcce526fc 100644 --- a/src/harness/virtualFileSystemWithWatch.ts +++ b/src/harness/virtualFileSystemWithWatch.ts @@ -1047,7 +1047,7 @@ interface Array { length: number; [n: number]: T; }` } serializeWatches(baseline: string[] = []) { - serializeMultiMap(baseline, "WatchedFiles", this.watchedFiles); + serializeMultiMap(baseline, "PolledWatches", this.watchedFiles); baseline.push(""); serializeMultiMap(baseline, "FsWatches", this.fsWatches); baseline.push(""); diff --git a/tests/baselines/reference/tsbuild/moduleResolution/resolves-specifier-in-output-declaration-file-from-referenced-project-correctly-with-preserveSymlinks.js b/tests/baselines/reference/tsbuild/moduleResolution/resolves-specifier-in-output-declaration-file-from-referenced-project-correctly-with-preserveSymlinks.js index cbb89a7116aa8..f4494562e3faa 100644 --- a/tests/baselines/reference/tsbuild/moduleResolution/resolves-specifier-in-output-declaration-file-from-referenced-project-correctly-with-preserveSymlinks.js +++ b/tests/baselines/reference/tsbuild/moduleResolution/resolves-specifier-in-output-declaration-file-from-referenced-project-correctly-with-preserveSymlinks.js @@ -127,7 +127,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/pkg2/build/index.d.ts (used version) /user/username/projects/myproject/packages/pkg1/index.ts (used version) -WatchedFiles:: +PolledWatches:: FsWatches:: diff --git a/tests/baselines/reference/tsbuild/moduleResolution/resolves-specifier-in-output-declaration-file-from-referenced-project-correctly.js b/tests/baselines/reference/tsbuild/moduleResolution/resolves-specifier-in-output-declaration-file-from-referenced-project-correctly.js index 0ba0d575b8c6f..25cdc47c467f9 100644 --- a/tests/baselines/reference/tsbuild/moduleResolution/resolves-specifier-in-output-declaration-file-from-referenced-project-correctly.js +++ b/tests/baselines/reference/tsbuild/moduleResolution/resolves-specifier-in-output-declaration-file-from-referenced-project-correctly.js @@ -128,7 +128,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg2/build/index.d.ts (used version) /user/username/projects/myproject/packages/pkg1/index.ts (used version) -WatchedFiles:: +PolledWatches:: FsWatches:: 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 56b4dbe20727c..cac0321a7d86a 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 @@ -56,7 +56,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -150,7 +150,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -197,7 +197,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -242,7 +242,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -290,7 +290,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 e7de269fe7eaa..65a4132a90561 100644 --- a/tests/baselines/reference/tsbuildWatch/demo/updates-with-bad-reference.js +++ b/tests/baselines/reference/tsbuildWatch/demo/updates-with-bad-reference.js @@ -245,7 +245,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/demo/animals/index.ts (used version) /user/username/projects/demo/core/utilities.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/demo/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/demo/tsconfig-base.json: @@ -521,7 +521,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/demo/animals/dog.ts (computed .d.ts) /user/username/projects/demo/animals/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/demo/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/demo/tsconfig-base.json: 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 d7681766d8320..07b93e799053c 100644 --- a/tests/baselines/reference/tsbuildWatch/demo/updates-with-circular-reference.js +++ b/tests/baselines/reference/tsbuildWatch/demo/updates-with-circular-reference.js @@ -167,7 +167,7 @@ Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/demo/animals/tsconfig.json: {"pollingInterval":250} /user/username/projects/demo/tsconfig-base.json: @@ -298,7 +298,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/demo/lib/animals/index.d.ts (used version) /user/username/projects/demo/zoo/zoo.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/demo/animals/tsconfig.json: {"pollingInterval":250} /user/username/projects/demo/tsconfig-base.json: 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 d256552fabef4..b6b9001cc34d9 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 @@ -148,7 +148,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg2/build/index.d.ts (used version) /user/username/projects/myproject/packages/pkg1/index.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/const.ts: @@ -336,7 +336,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg2/build/other.d.ts (used version) /user/username/projects/myproject/packages/pkg1/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/const.ts: @@ -438,7 +438,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg2/build/index.d.ts (used version) /user/username/projects/myproject/packages/pkg1/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/const.ts: 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 71a6d7271f043..f905a17711032 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 @@ -142,7 +142,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg2/build/index.d.ts (used version) /user/username/projects/myproject/packages/pkg1/index.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/const.cts: @@ -340,7 +340,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/const.cts: @@ -445,7 +445,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/const.cts: @@ -563,7 +563,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/const.cts: @@ -709,7 +709,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg2/build/index.d.cts (used version) /user/username/projects/myproject/packages/pkg1/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/pkg2/const.cts: 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 3c3a9d2b7c01d..5bca0fdfae4b2 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 @@ -107,7 +107,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/project2/index.ts (computed .d.ts during emit) /user/username/projects/myproject/node_modules/@types/foo/index.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/project1/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/project1/index.ts: @@ -305,7 +305,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/project1/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/project1/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/project1/index.ts: 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 da82497e5309c..88d99e03fa8aa 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 @@ -58,7 +58,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.js (used version) /user/username/projects/myproject/b.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.js: @@ -152,7 +152,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.js: @@ -205,7 +205,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.js (computed .d.ts) /user/username/projects/myproject/b.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.js: 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 0bce0c50da9f9..39b265f6ff7de 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 @@ -58,7 +58,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.js (used version) /user/username/projects/myproject/b.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.js: @@ -104,7 +104,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.js: @@ -157,7 +157,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.js (computed .d.ts) /user/username/projects/myproject/b.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.js: 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 92f2bec24a8ef..9b535ef9e10ec 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 @@ -73,7 +73,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -180,7 +180,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -242,7 +242,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) /user/username/projects/noemitonerror/src/other.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -377,7 +377,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -506,7 +506,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -560,7 +560,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -659,7 +659,7 @@ Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: 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 67a737c73d1dc..f73b760bc1054 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 @@ -73,7 +73,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -127,7 +127,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -189,7 +189,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) /user/username/projects/noemitonerror/src/other.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -267,7 +267,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -321,7 +321,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -377,7 +377,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -436,7 +436,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: 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 c62a551872e53..b5d368bb8f820 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 @@ -174,7 +174,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.d.ts (used version) /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: 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 41485fed85b72..fa56913fea86a 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 @@ -191,7 +191,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.d.ts (used version) /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -532,7 +532,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -709,7 +709,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.d.ts (used version) /user/username/projects/sample1/tests/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: 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 00f8741fbb74a..3ab6e1f31de31 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 @@ -52,7 +52,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewitherror.ts (computed .d.ts during emit) /user/username/projects/solution/app/filewithouterror.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/solution/app/tsconfig.json: {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: @@ -185,7 +185,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewitherror.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/solution/app/tsconfig.json: {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: @@ -236,7 +236,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewithouterror.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/solution/app/tsconfig.json: {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: 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 b9d6363657f19..f406259a70304 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 @@ -52,7 +52,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewitherror.ts (computed .d.ts during emit) /user/username/projects/solution/app/filewithouterror.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/solution/app/tsconfig.json: {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: @@ -185,7 +185,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewitherror.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/solution/app/tsconfig.json: {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: @@ -220,7 +220,7 @@ Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/solution/app/tsconfig.json: {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: 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 b7b53c616ee83..76bbc19c1991e 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 @@ -57,7 +57,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewitherror.ts (used version) /user/username/projects/solution/app/filewithouterror.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/solution/app/tsconfig.json: {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: @@ -108,7 +108,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewithouterror.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/solution/app/tsconfig.json: {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: 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 1aa1daacb5fb0..fa57b2c2165c6 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 @@ -57,7 +57,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewitherror.ts (used version) /user/username/projects/solution/app/filewithouterror.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/solution/app/tsconfig.json: {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: @@ -106,7 +106,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewitherror.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/solution/app/tsconfig.json: {"pollingInterval":250} /user/username/projects/solution/app/filewitherror.ts: 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 dab9cb78e0f96..df77e4d53ba2d 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 @@ -174,7 +174,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.d.ts (used version) /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -512,7 +512,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -669,7 +669,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: 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 b54d939bc32be..b5c451c498394 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 @@ -173,7 +173,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.d.ts (used version) /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -510,7 +510,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -666,7 +666,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: 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 38be688223dc2..5a712d84b35e6 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 @@ -60,7 +60,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/anothermodule.ts (computed .d.ts during emit) /user/username/projects/sample1/core/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -154,7 +154,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -205,7 +205,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/file3.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -290,7 +290,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: 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 8744fafb620b6..616ba148c55e6 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 @@ -67,7 +67,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/anothermodule.ts (computed .d.ts during emit) /user/username/projects/sample1/core/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -169,7 +169,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -220,7 +220,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/file3.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -310,7 +310,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/tsbuildinfo-has-error.js b/tests/baselines/reference/tsbuildWatch/programUpdates/tsbuildinfo-has-error.js index 3bd3703372ded..b0abd8fc9deda 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/tsbuildinfo-has-error.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/tsbuildinfo-has-error.js @@ -46,7 +46,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /src/project/main.ts (used version) -WatchedFiles:: +PolledWatches:: /src/project/tsconfig.json: {"pollingInterval":250} /src/project/main.ts: 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 e312a7c5cbedb..7d2843c59a9e2 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 @@ -150,7 +150,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/anothermodule.d.ts (used version) /user/username/projects/sample1/logic/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: 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 fdea840b60a0f..f9977ea86ce9e 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 @@ -97,7 +97,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/anothermodule.ts (computed .d.ts during emit) /user/username/projects/sample1/core/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -245,7 +245,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/anothermodule.d.ts (used version) /user/username/projects/sample1/logic/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -396,7 +396,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.d.ts (used version) /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: 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 161df8a1c9db6..c5d2caf57ebd7 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 @@ -79,7 +79,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/library/library.d.ts (used version) /user/username/projects/sample1/app/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/library/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/library/library.ts: @@ -228,7 +228,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/library/library.d.ts (used version) /user/username/projects/sample1/app/app.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/library/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/library/library.ts: @@ -360,7 +360,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/library/library.d.ts (used version) /user/username/projects/sample1/app/app.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/library/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/library/library.ts: 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 6805175ad1510..93fefc0ba0df2 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 @@ -57,7 +57,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: @@ -291,7 +291,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: @@ -410,7 +410,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: @@ -575,7 +575,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: @@ -677,7 +677,7 @@ Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/index.ts: 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 49983ed054c29..0332e616cc011 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 @@ -148,7 +148,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.d.ts (used version) /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -464,7 +464,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/newfile.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -589,7 +589,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -649,7 +649,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/newfile.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -782,7 +782,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: 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 e5030825b9aba..3faea5c974332 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 @@ -148,7 +148,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.d.ts (used version) /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -467,7 +467,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -606,7 +606,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.d.ts (used version) /user/username/projects/sample1/tests/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -817,7 +817,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -948,7 +948,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.d.ts (used version) /user/username/projects/sample1/tests/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -1161,7 +1161,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -1308,7 +1308,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.d.ts (used version) /user/username/projects/sample1/tests/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: 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 0c67e7240fb6d..f58744ef830d3 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 @@ -148,7 +148,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.d.ts (used version) /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -469,7 +469,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: 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 9c4b6dd22ccb1..8858cdbea3304 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 @@ -174,7 +174,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.d.ts (used version) /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -498,7 +498,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/newfile.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -628,7 +628,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -688,7 +688,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/newfile.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -826,7 +826,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: 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 b81a69d435821..97de2cf0f5c70 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 @@ -174,7 +174,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.d.ts (used version) /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -501,7 +501,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -645,7 +645,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.d.ts (used version) /user/username/projects/sample1/tests/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -856,7 +856,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -992,7 +992,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.d.ts (used version) /user/username/projects/sample1/tests/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -1205,7 +1205,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -1357,7 +1357,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.d.ts (used version) /user/username/projects/sample1/tests/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: 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 7af4dd5f8543e..0df514f3b3492 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 @@ -174,7 +174,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.d.ts (used version) /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: @@ -503,7 +503,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/core/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/anothermodule.ts: 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 24589321852f9..d0392a5a11d8e 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 @@ -92,7 +92,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/other.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /a/b/project1.tsconfig.json: {"pollingInterval":250} /a/b/alpha.tsconfig.json: @@ -242,7 +242,7 @@ Output:: -WatchedFiles:: +PolledWatches:: /a/b/project1.tsconfig.json: {"pollingInterval":250} /a/b/alpha.tsconfig.json: 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 6ead4a4f6a8ed..ebb2d30daf862 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 @@ -48,7 +48,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/index.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/index.ts: @@ -91,7 +91,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/index.ts: 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 f0efa2e086890..fd1b80e562125 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 @@ -88,7 +88,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/other.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /a/b/project1.tsconfig.json: {"pollingInterval":250} /a/b/alpha.tsconfig.json: @@ -248,7 +248,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/b/project1.tsconfig.json: {"pollingInterval":250} /a/b/alpha.tsconfig.json: @@ -352,7 +352,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/b/project1.tsconfig.json: {"pollingInterval":250} /a/b/alpha.tsconfig.json: @@ -450,7 +450,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/b/project1.tsconfig.json: {"pollingInterval":250} /a/b/alpha.tsconfig.json: @@ -554,7 +554,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (computed .d.ts) /a/b/other.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/project1.tsconfig.json: {"pollingInterval":250} /a/b/alpha.tsconfig.json: @@ -616,7 +616,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/b/project1.tsconfig.json: {"pollingInterval":250} /a/b/alpha.tsconfig.json: @@ -721,7 +721,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/b/project1.tsconfig.json: {"pollingInterval":250} /a/b/alpha.tsconfig.json: 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 0edbadc083886..c574ed89a8386 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 @@ -626,7 +626,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/pkg22/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -1976,7 +1976,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -2197,7 +2197,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -2376,7 +2376,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -2667,7 +2667,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -2913,7 +2913,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -3159,7 +3159,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -3405,7 +3405,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -3602,7 +3602,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -3759,7 +3759,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -3938,7 +3938,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -4231,7 +4231,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -4477,7 +4477,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -4701,7 +4701,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -4999,7 +4999,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -5183,7 +5183,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -5479,7 +5479,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -5725,7 +5725,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -5971,7 +5971,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -6217,7 +6217,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -6414,7 +6414,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -6571,7 +6571,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: 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 e4cfb19e51099..fa9e78f8a9077 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 @@ -106,7 +106,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/pkg2/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -316,7 +316,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -397,7 +397,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -456,7 +456,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -578,7 +578,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -615,7 +615,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: 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 1abb684564378..f9ae4a12b92a0 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 @@ -158,7 +158,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/pkg4/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -482,7 +482,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -577,7 +577,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -648,7 +648,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -816,7 +816,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -867,7 +867,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: 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 df6858c7c151e..956e449148627 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 @@ -236,7 +236,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/pkg7/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -731,7 +731,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -847,7 +847,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -936,7 +936,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -1137,7 +1137,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -1244,7 +1244,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -1311,7 +1311,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -1400,7 +1400,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -1603,7 +1603,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -1717,7 +1717,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -1871,7 +1871,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -1938,7 +1938,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: diff --git a/tests/baselines/reference/tsbuildWatch/publicApi/with-custom-transformers.js b/tests/baselines/reference/tsbuildWatch/publicApi/with-custom-transformers.js index eb59bc7d03b60..7c1982ef06f60 100644 --- a/tests/baselines/reference/tsbuildWatch/publicApi/with-custom-transformers.js +++ b/tests/baselines/reference/tsbuildWatch/publicApi/with-custom-transformers.js @@ -85,7 +85,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/webpack/index.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/shared/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/shared/index.ts: @@ -311,7 +311,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/shared/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/shared/index.ts: diff --git a/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js b/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js index 673e405953031..c30c25187f5db 100644 --- a/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js +++ b/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js @@ -125,7 +125,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/reexport/out/pure/index.d.ts (used version) /user/username/projects/reexport/src/main/index.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/reexport/src/pure/tsconfig.json: {"pollingInterval":250} /user/username/projects/reexport/src/pure/index.ts: @@ -325,7 +325,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/reexport/out/pure/index.d.ts (used version) /user/username/projects/reexport/src/main/index.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/reexport/src/pure/tsconfig.json: {"pollingInterval":250} /user/username/projects/reexport/src/pure/index.ts: @@ -482,7 +482,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/reexport/out/pure/index.d.ts (used version) /user/username/projects/reexport/src/main/index.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/reexport/src/pure/tsconfig.json: {"pollingInterval":250} /user/username/projects/reexport/src/pure/index.ts: 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 18960b96a8d6a..a726b29487618 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 @@ -147,7 +147,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg3/index.ts (used version) /user/username/projects/myproject/typings/xterm.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -307,7 +307,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/typings/xterm.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -363,7 +363,7 @@ Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -469,7 +469,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/typings/xterm.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -523,7 +523,7 @@ Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} @@ -543,7 +543,7 @@ export const typing = 10;export const typing1 = 10; Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} diff --git a/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects.js b/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects.js index 18960b96a8d6a..a726b29487618 100644 --- a/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects.js +++ b/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects.js @@ -147,7 +147,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg3/index.ts (used version) /user/username/projects/myproject/typings/xterm.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -307,7 +307,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/typings/xterm.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -363,7 +363,7 @@ Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -469,7 +469,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/typings/xterm.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/pkg0/index.ts: @@ -523,7 +523,7 @@ Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} @@ -543,7 +543,7 @@ export const typing = 10;export const typing1 = 10; Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} diff --git a/tests/baselines/reference/tsc/cancellationToken/when-emitting-buildInfo.js b/tests/baselines/reference/tsc/cancellationToken/when-emitting-buildInfo.js index 5368c55ff22dc..bcff273331166 100644 --- a/tests/baselines/reference/tsc/cancellationToken/when-emitting-buildInfo.js +++ b/tests/baselines/reference/tsc/cancellationToken/when-emitting-buildInfo.js @@ -62,7 +62,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) /user/username/projects/myproject/d.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -241,7 +241,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -350,7 +350,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -486,7 +486,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) /user/username/projects/myproject/d.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: FsWatches:: diff --git a/tests/baselines/reference/tsc/cancellationToken/when-using-state.js b/tests/baselines/reference/tsc/cancellationToken/when-using-state.js index 58c0696abd6ef..303ca78b6ea71 100644 --- a/tests/baselines/reference/tsc/cancellationToken/when-using-state.js +++ b/tests/baselines/reference/tsc/cancellationToken/when-using-state.js @@ -62,7 +62,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) /user/username/projects/myproject/d.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -241,7 +241,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -350,7 +350,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -486,7 +486,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) /user/username/projects/myproject/d.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: FsWatches:: diff --git a/tests/baselines/reference/tsc/declarationEmit/when-pkg-references-sibling-package-through-indirect-symlink-moduleCaseChange.js b/tests/baselines/reference/tsc/declarationEmit/when-pkg-references-sibling-package-through-indirect-symlink-moduleCaseChange.js index 2c639de2a7f01..e4d085374b056 100644 --- a/tests/baselines/reference/tsc/declarationEmit/when-pkg-references-sibling-package-through-indirect-symlink-moduleCaseChange.js +++ b/tests/baselines/reference/tsc/declarationEmit/when-pkg-references-sibling-package-through-indirect-symlink-moduleCaseChange.js @@ -94,7 +94,7 @@ Program files:: /user/username/projects/myproject/pkg3/src/keys.ts /user/username/projects/myproject/pkg3/src/index.ts -WatchedFiles:: +PolledWatches:: FsWatches:: diff --git a/tests/baselines/reference/tsc/declarationEmit/when-pkg-references-sibling-package-through-indirect-symlink.js b/tests/baselines/reference/tsc/declarationEmit/when-pkg-references-sibling-package-through-indirect-symlink.js index 63625a4da40e5..d239eb6a278b3 100644 --- a/tests/baselines/reference/tsc/declarationEmit/when-pkg-references-sibling-package-through-indirect-symlink.js +++ b/tests/baselines/reference/tsc/declarationEmit/when-pkg-references-sibling-package-through-indirect-symlink.js @@ -94,7 +94,7 @@ Program files:: /user/username/projects/myproject/pkg3/src/keys.ts /user/username/projects/myproject/pkg3/src/index.ts -WatchedFiles:: +PolledWatches:: FsWatches:: diff --git a/tests/baselines/reference/tsc/declarationEmit/when-same-version-is-referenced-through-source-and-another-symlinked-package-moduleCaseChange.js b/tests/baselines/reference/tsc/declarationEmit/when-same-version-is-referenced-through-source-and-another-symlinked-package-moduleCaseChange.js index 94600f4e70580..0db4bb6181274 100644 --- a/tests/baselines/reference/tsc/declarationEmit/when-same-version-is-referenced-through-source-and-another-symlinked-package-moduleCaseChange.js +++ b/tests/baselines/reference/tsc/declarationEmit/when-same-version-is-referenced-through-source-and-another-symlinked-package-moduleCaseChange.js @@ -157,7 +157,7 @@ Program files:: /user/username/projects/myProject/plugin-two/index.d.ts /user/username/projects/myproject/plugin-one/index.ts -WatchedFiles:: +PolledWatches:: FsWatches:: diff --git a/tests/baselines/reference/tsc/declarationEmit/when-same-version-is-referenced-through-source-and-another-symlinked-package-with-indirect-link-moduleCaseChange.js b/tests/baselines/reference/tsc/declarationEmit/when-same-version-is-referenced-through-source-and-another-symlinked-package-with-indirect-link-moduleCaseChange.js index 3a5649fe04095..49ea0557cde35 100644 --- a/tests/baselines/reference/tsc/declarationEmit/when-same-version-is-referenced-through-source-and-another-symlinked-package-with-indirect-link-moduleCaseChange.js +++ b/tests/baselines/reference/tsc/declarationEmit/when-same-version-is-referenced-through-source-and-another-symlinked-package-with-indirect-link-moduleCaseChange.js @@ -168,7 +168,7 @@ Program files:: /user/username/projects/myproject/plugin-one/node_modules/typescript-fsa/index.d.ts /user/username/projects/myproject/plugin-one/index.ts -WatchedFiles:: +PolledWatches:: FsWatches:: diff --git a/tests/baselines/reference/tsc/declarationEmit/when-same-version-is-referenced-through-source-and-another-symlinked-package-with-indirect-link.js b/tests/baselines/reference/tsc/declarationEmit/when-same-version-is-referenced-through-source-and-another-symlinked-package-with-indirect-link.js index 69bdc8dc47c7b..5a03c9782e184 100644 --- a/tests/baselines/reference/tsc/declarationEmit/when-same-version-is-referenced-through-source-and-another-symlinked-package-with-indirect-link.js +++ b/tests/baselines/reference/tsc/declarationEmit/when-same-version-is-referenced-through-source-and-another-symlinked-package-with-indirect-link.js @@ -168,7 +168,7 @@ Program files:: /user/username/projects/myproject/plugin-one/node_modules/typescript-fsa/index.d.ts /user/username/projects/myproject/plugin-one/index.ts -WatchedFiles:: +PolledWatches:: FsWatches:: diff --git a/tests/baselines/reference/tsc/declarationEmit/when-same-version-is-referenced-through-source-and-another-symlinked-package.js b/tests/baselines/reference/tsc/declarationEmit/when-same-version-is-referenced-through-source-and-another-symlinked-package.js index a9e5925152fe8..a1ccbb06a2345 100644 --- a/tests/baselines/reference/tsc/declarationEmit/when-same-version-is-referenced-through-source-and-another-symlinked-package.js +++ b/tests/baselines/reference/tsc/declarationEmit/when-same-version-is-referenced-through-source-and-another-symlinked-package.js @@ -157,7 +157,7 @@ Program files:: /user/username/projects/myproject/plugin-two/index.d.ts /user/username/projects/myproject/plugin-one/index.ts -WatchedFiles:: +PolledWatches:: FsWatches:: 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 dc357d588519f..44b5d568e26e7 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 @@ -43,7 +43,7 @@ Shape signatures in builder refreshed for:: /f.ts (used version) /a/lib/lib.d.ts (used version) -WatchedFiles:: +PolledWatches:: /tsconfig.json: {"pollingInterval":250} /f.ts: @@ -90,7 +90,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /f.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /tsconfig.json: {"pollingInterval":250} /f.ts: 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 ffb9c11347e0c..fed10b3efb9b6 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 @@ -42,7 +42,7 @@ Shape signatures in builder refreshed for:: /f.ts (used version) /a/lib/lib.d.ts (used version) -WatchedFiles:: +PolledWatches:: /tsconfig.json: {"pollingInterval":250} /f.ts: @@ -89,7 +89,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /f.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /tsconfig.json: {"pollingInterval":250} /f.ts: diff --git a/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js b/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js index 4c5d051e5c2cd..f992205d5fa81 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js @@ -44,7 +44,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /f.ts (used version) -WatchedFiles:: +PolledWatches:: /f.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -94,7 +94,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /f.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /f.ts: {"pollingInterval":250} /a/lib/lib.d.ts: diff --git a/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js b/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js index d3c6ec0de2375..230104578c46c 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js @@ -46,7 +46,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /f.ts (used version) -WatchedFiles:: +PolledWatches:: /f.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -96,7 +96,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /f.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /f.ts: {"pollingInterval":250} /a/lib/lib.d.ts: diff --git a/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js b/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js index eb1b3f8eb6841..1a89f49ab86e9 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js @@ -39,7 +39,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /f.ts (used version) -WatchedFiles:: +PolledWatches:: /f.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -82,7 +82,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /f.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /f.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 b008b4a4e442c..319f0f776afe3 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/without---diagnostics-or---extendedDiagnostics.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/without---diagnostics-or---extendedDiagnostics.js @@ -40,7 +40,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /f.ts (used version) -WatchedFiles:: +PolledWatches:: /f.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -84,7 +84,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /f.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /f.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 5a4a02eb23515..31cfca4a57773 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 @@ -52,7 +52,7 @@ Shape signatures in builder refreshed for:: /user/someone/projects/myproject/file2.ts (used version) /user/someone/projects/myproject/file3.ts (used version) -WatchedFiles:: +PolledWatches:: /user/someone/projects/myproject/file3.ts: {"pollingInterval":250} /user/someone/projects/myproject/file2.ts: @@ -115,7 +115,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/someone/projects/myproject/file3.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/someone/projects/myproject/file3.ts: {"pollingInterval":250} /user/someone/projects/myproject/file2.ts: 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 d749bdc5e93f5..47fdf011ef796 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 @@ -43,7 +43,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /home/username/project/app/file.ts (used version) -WatchedFiles:: +PolledWatches:: /home/username/project/tsconfig.json: {"pollingInterval":250} /home/username/project/app/file.ts: @@ -96,7 +96,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /home/username/project/app/file.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /home/username/project/tsconfig.json: {"pollingInterval":250} /home/username/project/app/file.ts: diff --git a/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-carriageReturn-lineFeed.js b/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-carriageReturn-lineFeed.js index 347cfffba62e2..3cdb037bfa4f6 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-carriageReturn-lineFeed.js +++ b/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-carriageReturn-lineFeed.js @@ -41,7 +41,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/app.ts (used version) -WatchedFiles:: +PolledWatches:: /a/app.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -90,7 +90,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/app.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/app.ts: {"pollingInterval":250} /a/lib/lib.d.ts: diff --git a/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-lineFeed.js b/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-lineFeed.js index 2a88fdc4073c5..f7e0ca93a2983 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-lineFeed.js +++ b/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-lineFeed.js @@ -41,7 +41,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/app.ts (used version) -WatchedFiles:: +PolledWatches:: /a/app.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -90,7 +90,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/app.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/app.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 8c12a46ef38e6..0a7c7fa08d9c8 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 @@ -55,7 +55,7 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (used version) /a/b/f3.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/f1.ts: @@ -135,7 +135,7 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (computed .d.ts) /a/b/f3.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/f1.ts: @@ -202,7 +202,7 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (computed .d.ts) /a/b/f2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/f1.ts: 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 cc2564386e2cc..81546f3172cb5 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 @@ -72,7 +72,7 @@ Shape signatures in builder refreshed for:: /a/b/globalfile3.ts (used version) /a/b/modulefile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: @@ -172,7 +172,7 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer2.ts (used version) /a/b/file1consumer1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: 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 7d7c741186acf..a3b0e1c619281 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 @@ -55,7 +55,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: @@ -160,7 +160,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: 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 e58da01fd0cd9..d15c77375f17e 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 @@ -67,7 +67,7 @@ Shape signatures in builder refreshed for:: /a/b/globalfile3.ts (used version) /a/b/modulefile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: @@ -160,7 +160,7 @@ Shape signatures in builder refreshed for:: /a/b/modulefile1.ts (computed .d.ts) /a/b/file1consumer1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.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 baa8902364360..6afcb2334c980 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 @@ -67,7 +67,7 @@ Shape signatures in builder refreshed for:: /a/b/globalfile3.ts (used version) /a/b/modulefile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: @@ -168,7 +168,7 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer2.ts (computed .d.ts) /a/b/file1consumer1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: 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 8e1ae2b772471..a550e3069641e 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 @@ -67,7 +67,7 @@ Shape signatures in builder refreshed for:: /a/b/globalfile3.ts (used version) /a/b/modulefile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: @@ -163,7 +163,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: @@ -236,7 +236,7 @@ Shape signatures in builder refreshed for:: /a/b/modulefile1.ts (computed .d.ts) /a/b/file1consumer2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: @@ -305,7 +305,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: @@ -390,7 +390,7 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer2.ts (computed .d.ts) /a/b/file1consumer1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: @@ -463,7 +463,7 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer2.ts (computed .d.ts) /a/b/file1consumer1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: 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 a83f8c73b0b09..0284886d584b0 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 @@ -67,7 +67,7 @@ Shape signatures in builder refreshed for:: /a/b/globalfile3.ts (used version) /a/b/modulefile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: @@ -162,7 +162,7 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer2.ts (computed .d.ts) /a/b/file1consumer1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: @@ -237,7 +237,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/modulefile1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: 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 cec482d5c46e8..97761e07860fc 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 @@ -58,7 +58,7 @@ Shape signatures in builder refreshed for:: /a/b/modulefile1.ts (used version) /a/b/file1consumer1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: @@ -124,7 +124,7 @@ Shape signatures in builder refreshed for:: /a/b/modulefile1.ts (computed .d.ts) /a/b/file1consumer1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: @@ -182,7 +182,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/modulefile1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: 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 f6b27ac44217c..215d3443871ce 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 @@ -54,7 +54,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/referencefile1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/referencefile1.ts: @@ -127,7 +127,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/referencefile1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/referencefile1.ts: @@ -198,7 +198,7 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (computed .d.ts) /a/b/referencefile1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/referencefile1.ts: 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 4e97ac1158424..a7630c2846e6d 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 @@ -55,7 +55,7 @@ Shape signatures in builder refreshed for:: /a/b/modulefile1.ts (used version) /a/b/referencefile1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/modulefile1.ts: @@ -129,7 +129,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/referencefile1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/referencefile1.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 7be50c4e9d7d2..b8b45163727e1 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 @@ -67,7 +67,7 @@ Shape signatures in builder refreshed for:: /a/b/globalfile3.ts (used version) /a/b/modulefile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: @@ -167,7 +167,7 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer2.ts (computed .d.ts) /a/b/modulefile2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: 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 e015db509c975..033ba093be13f 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 @@ -73,7 +73,7 @@ Shape signatures in builder refreshed for:: /a/b/globalfile3.ts (used version) /a/b/modulefile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: @@ -174,7 +174,7 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (computed .d.ts) /a/b/file1consumer1consumer1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: @@ -248,7 +248,7 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer2.ts (computed .d.ts) /a/b/file1consumer1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: @@ -330,7 +330,7 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (computed .d.ts) /a/b/file1consumer1consumer1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1consumer1.ts: 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 9a6b81585be9c..1a86b4ba01bb4 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 @@ -51,7 +51,7 @@ Shape signatures in builder refreshed for:: /a/b/file2.ts (used version) /a/b/file1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1.ts: @@ -120,7 +120,7 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (computed .d.ts) /a/b/file2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1.ts: 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 0b0576cf65afd..655e6f2f95d4b 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /a/b.ts (used version) /a/lib/lib.d.ts (used version) -WatchedFiles:: +PolledWatches:: /a/tsconfig.json: {"pollingInterval":250} /a/a.ts: @@ -110,7 +110,7 @@ Shape signatures in builder refreshed for:: /a/a.ts (computed .d.ts) /a/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/tsconfig.json: {"pollingInterval":250} /a/a.ts: @@ -168,7 +168,7 @@ Shape signatures in builder refreshed for:: /a/a.ts (computed .d.ts) /a/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/tsconfig.json: {"pollingInterval":250} /a/a.ts: 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 0ae06b5698ab8..155601e04b258 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 @@ -43,7 +43,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/tsconfig.json: {"pollingInterval":250} /a/a.ts: @@ -96,7 +96,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/tsconfig.json: {"pollingInterval":250} /a/a.ts: @@ -149,7 +149,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/tsconfig.json: {"pollingInterval":250} /a/a.ts: 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 1eedb7d2f3042..108ffc938f963 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 @@ -43,7 +43,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/tsconfig.json: {"pollingInterval":250} /a/a.ts: @@ -96,7 +96,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/tsconfig.json: {"pollingInterval":250} /a/a.ts: @@ -149,7 +149,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/tsconfig.json: {"pollingInterval":250} /a/a.ts: 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 d4833230a6764..b813b2f4f196c 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 @@ -56,7 +56,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/b/project/tsconfig.json: {"pollingInterval":250} /a/b/output/anotherdependency/file1.d.ts: 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 13399a9a735fe..8d79177052e04 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 @@ -66,7 +66,7 @@ Shape signatures in builder refreshed for:: /a/b/project/src/main.ts (used version) /a/b/project/src/main2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/project/tsconfig.json: {"pollingInterval":250} /a/b/output/anotherdependency/file1.d.ts: 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 185dd688a2a07..33e6c5ef6581e 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /a/rootfolder/project/scripts/javascript.js (used version) /a/rootfolder/project/scripts/typescript.ts (used version) -WatchedFiles:: +PolledWatches:: /a/rootfolder/project/tsconfig.json: {"pollingInterval":250} /a/rootfolder/project/scripts/javascript.js: @@ -110,7 +110,7 @@ Shape signatures in builder refreshed for:: /a/rootfolder/project/scripts/typescript.ts (computed .d.ts) /a/rootfolder/project/scripts/javascript.js (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/rootfolder/project/tsconfig.json: {"pollingInterval":250} /a/rootfolder/project/scripts/javascript.js: 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 3cc9bba0b7055..1d2fea00bb1cf 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -202,7 +202,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -331,7 +331,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -460,7 +460,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 f19c7b993d3f1..42017b286c6b8 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -133,7 +133,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -193,7 +193,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -253,7 +253,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 0907382f6bcea..57c4818704c7e 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -234,7 +234,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -390,7 +390,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -545,7 +545,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 929568c2ee88e..110b1f01d4334 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -165,7 +165,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -243,7 +243,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -320,7 +320,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 9a56a01a3b5ad..ac9ef0ac66b03 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 @@ -102,7 +102,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /user/username/projects/myproject/e.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -360,7 +360,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts) /user/username/projects/myproject/e.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -529,7 +529,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -695,7 +695,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 09a17fbd93b02..a50c35c130464 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 @@ -102,7 +102,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /user/username/projects/myproject/e.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -216,7 +216,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts) /user/username/projects/myproject/e.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -289,7 +289,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -359,7 +359,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 381198850379f..aaddbcfbff9c4 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 @@ -88,7 +88,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -377,7 +377,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts) /user/username/projects/myproject/app.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -587,7 +587,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -793,7 +793,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 35d94328df419..fbc00352d0cd3 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 @@ -88,7 +88,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -263,7 +263,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts) /user/username/projects/myproject/app.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -339,7 +339,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -411,7 +411,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 0d503178b79fd..33581de99e4a8 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 @@ -97,7 +97,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -418,7 +418,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts) /user/username/projects/myproject/lib2/data2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -647,7 +647,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -871,7 +871,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 a5e22a52e41c8..9313d80d3ce26 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 @@ -97,7 +97,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -289,7 +289,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts) /user/username/projects/myproject/lib2/data2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -369,7 +369,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -444,7 +444,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 9f7782fbed704..fac9306d0d93c 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 @@ -74,7 +74,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (used version) /user/username/projects/noemitonerror/src/other.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -204,7 +204,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -260,7 +260,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -396,7 +396,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -526,7 +526,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -580,7 +580,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -693,7 +693,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js index 9f28c1578d944..1aea0ef4183b9 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js @@ -74,7 +74,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (used version) /user/username/projects/noemitonerror/src/other.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -128,7 +128,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -184,7 +184,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -262,7 +262,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -316,7 +316,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -370,7 +370,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -425,7 +425,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: 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 525cc83bd8f35..5ea9e3d9179fd 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -204,7 +204,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -331,7 +331,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -458,7 +458,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 2da532368683e..d55d568833b49 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -137,7 +137,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -197,7 +197,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -257,7 +257,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 d92f6f65dab6a..f05869aa161c7 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts during emit) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -242,7 +242,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -388,7 +388,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -534,7 +534,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 8743c65801e06..d2c20177a13e5 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts during emit) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -175,7 +175,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -254,7 +254,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -333,7 +333,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 5046fb04216cd..b0491972a9aba 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 @@ -102,7 +102,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts during emit) /user/username/projects/myproject/e.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -398,7 +398,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -638,7 +638,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -878,7 +878,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 12c48ea7bf62a..cbc49e349d54c 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 @@ -102,7 +102,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts during emit) /user/username/projects/myproject/e.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -256,7 +256,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -354,7 +354,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -452,7 +452,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 7638c6a4db48c..70324f67c8a11 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 @@ -88,7 +88,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -392,7 +392,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -577,7 +577,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -762,7 +762,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 2aea217dbdb93..e28593c0f893b 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 @@ -88,7 +88,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -280,7 +280,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -353,7 +353,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -426,7 +426,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 87cbb662e08ff..aed9f2e2be832 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 @@ -97,7 +97,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -440,7 +440,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -643,7 +643,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -846,7 +846,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 24982d19a8ebe..2a30d1ea6ec3c 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 @@ -97,7 +97,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -313,7 +313,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -389,7 +389,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -465,7 +465,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/tools.interface.ts (computed .d.ts) /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 91c83f5229419..61a1ac39540f5 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 @@ -74,7 +74,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (used version) /user/username/projects/noemitonerror/src/other.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -205,7 +205,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -261,7 +261,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -412,7 +412,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -543,7 +543,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -597,7 +597,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -712,7 +712,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js index 50cd7e28d0313..40518aa53c2ea 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js @@ -74,7 +74,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (used version) /user/username/projects/noemitonerror/src/other.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -128,7 +128,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -184,7 +184,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -276,7 +276,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -330,7 +330,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -384,7 +384,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -440,7 +440,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: 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 4cc4003533445..9a7f348fbce0d 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -206,7 +206,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -346,7 +346,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -479,7 +479,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 db0142cabab74..758fe39faa822 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -140,7 +140,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -202,7 +202,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -269,7 +269,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 de505171e98cb..de0d7c8e08166 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -231,7 +231,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -381,7 +381,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -526,7 +526,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 b82e1c24ce5e7..fe2bc90b3f9c4 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -165,7 +165,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -240,7 +240,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -319,7 +319,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 26c8beb5cc2ce..d425eae3adfe2 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 @@ -102,7 +102,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /user/username/projects/myproject/e.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -357,7 +357,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts) /user/username/projects/myproject/e.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -543,7 +543,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (used version) /user/username/projects/myproject/d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -760,7 +760,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /user/username/projects/myproject/e.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 8e95b6ca97709..b5b2bb3edbd78 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 @@ -102,7 +102,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /user/username/projects/myproject/e.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -216,7 +216,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts) /user/username/projects/myproject/e.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -309,7 +309,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (used version) /user/username/projects/myproject/d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -385,7 +385,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /user/username/projects/myproject/e.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 9f691b18d98ff..ed46928ac19b0 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 @@ -88,7 +88,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -374,7 +374,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts) /user/username/projects/myproject/app.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -583,7 +583,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -774,7 +774,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 0aa2a968214da..191a4d2fe377b 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 @@ -88,7 +88,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -263,7 +263,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts) /user/username/projects/myproject/app.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -341,7 +341,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -421,7 +421,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 76722ecfa47d3..e7622b9c3105d 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 @@ -97,7 +97,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -415,7 +415,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts) /user/username/projects/myproject/lib2/data2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -645,7 +645,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -856,7 +856,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 e625ec28e9c41..1bf750828421a 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 @@ -97,7 +97,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -289,7 +289,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts) /user/username/projects/myproject/lib2/data2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -373,7 +373,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -458,7 +458,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 46d3b42bbc858..0e5d3e4f3f392 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 @@ -74,7 +74,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (used version) /user/username/projects/noemitonerror/src/other.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -203,7 +203,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -259,7 +259,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -394,7 +394,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -523,7 +523,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -577,7 +577,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -689,7 +689,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js index 11aa5f87ebccb..d6b2f08446960 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js @@ -74,7 +74,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (used version) /user/username/projects/noemitonerror/src/other.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -128,7 +128,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -184,7 +184,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -262,7 +262,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -316,7 +316,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -370,7 +370,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -425,7 +425,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: 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 4df00307c9834..ee3fceb96b34c 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -210,7 +210,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -351,7 +351,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -485,7 +485,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 df40f59f456ab..a33793db59cda 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -144,7 +144,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -207,7 +207,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -275,7 +275,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 ec0957b470d46..758eec3443458 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts during emit) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -248,7 +248,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -408,7 +408,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -561,7 +561,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 d9bb6cc3705f3..ad486fa6c4c56 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts during emit) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -182,7 +182,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -264,7 +264,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -351,7 +351,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 9e7165b2a8285..479e5f4f188b8 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 @@ -102,7 +102,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts during emit) /user/username/projects/myproject/e.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -385,7 +385,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts during emit) /user/username/projects/myproject/d.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -585,7 +585,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts during emit) /user/username/projects/myproject/d.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -814,7 +814,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts during emit) /user/username/projects/myproject/d.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 68f5a50d62131..d1fbf02f375ff 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 @@ -102,7 +102,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts during emit) /user/username/projects/myproject/e.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -244,7 +244,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts during emit) /user/username/projects/myproject/d.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -348,7 +348,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts during emit) /user/username/projects/myproject/d.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -436,7 +436,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts during emit) /user/username/projects/myproject/d.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 6efdbc44c0c01..f6e48d064f4e8 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 @@ -88,7 +88,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -405,7 +405,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -624,7 +624,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -826,7 +826,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 ab4950c033d73..ce5ba9a6e1b8c 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 @@ -88,7 +88,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -294,7 +294,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -379,7 +379,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -470,7 +470,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 d920aeb4b4d37..0022d156b8182 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 @@ -97,7 +97,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -455,7 +455,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -695,7 +695,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -918,7 +918,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 898c33df8ef35..333d17d762267 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 @@ -97,7 +97,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -329,7 +329,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -420,7 +420,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -517,7 +517,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 275a2fd51554a..826a73575a25f 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 @@ -74,7 +74,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (used version) /user/username/projects/noemitonerror/src/other.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -204,7 +204,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -260,7 +260,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -410,7 +410,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -540,7 +540,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -594,7 +594,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -708,7 +708,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js index 0f53fe9d585bf..de9eed55601f4 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js @@ -74,7 +74,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (used version) /user/username/projects/noemitonerror/src/other.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -128,7 +128,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -184,7 +184,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -276,7 +276,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -330,7 +330,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -384,7 +384,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -440,7 +440,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: 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 ca8a050e1d969..f5b491c4b1e12 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -206,7 +206,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -346,7 +346,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -479,7 +479,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 f0bdd7df4a406..16164b04b1c96 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -140,7 +140,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -202,7 +202,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -269,7 +269,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 42392d37d4a7e..2d28604c9f842 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -231,7 +231,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -382,7 +382,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -526,7 +526,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 6145537b43255..75bcbc34089d1 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -165,7 +165,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -238,7 +238,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -316,7 +316,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 3062d2e62ddd1..e0309bb5a5387 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 @@ -102,7 +102,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /user/username/projects/myproject/e.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -357,7 +357,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /user/username/projects/myproject/e.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -544,7 +544,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /user/username/projects/myproject/e.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -760,7 +760,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /user/username/projects/myproject/e.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 f530e70582c8b..e2885e9a75990 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 @@ -102,7 +102,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /user/username/projects/myproject/e.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -216,7 +216,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /user/username/projects/myproject/e.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -307,7 +307,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /user/username/projects/myproject/e.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -382,7 +382,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /user/username/projects/myproject/e.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 9d3cddab398e1..f81729572f9b9 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 @@ -88,7 +88,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -374,7 +374,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -581,7 +581,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -771,7 +771,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 d37982eb8712a..ffa33a1266fbb 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 @@ -88,7 +88,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -263,7 +263,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -336,7 +336,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -415,7 +415,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 b2a0fe6aea129..a74535af93b74 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 @@ -97,7 +97,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -415,7 +415,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -642,7 +642,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -852,7 +852,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 64459160df0b1..dda42baab936e 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 @@ -97,7 +97,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -289,7 +289,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -367,7 +367,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -451,7 +451,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /user/username/projects/myproject/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 3a51a531993f1..f1141fb53dc8e 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 @@ -74,7 +74,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (used version) /user/username/projects/noemitonerror/src/other.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -203,7 +203,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -259,7 +259,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -394,7 +394,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -523,7 +523,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -577,7 +577,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -689,7 +689,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js index c19f92ef84399..40c84e60e6126 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js @@ -74,7 +74,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (used version) /user/username/projects/noemitonerror/src/other.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -128,7 +128,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -184,7 +184,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -262,7 +262,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -316,7 +316,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -370,7 +370,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -425,7 +425,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: 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 0fd2839be209b..a776732af743d 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -210,7 +210,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -351,7 +351,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -485,7 +485,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 7b2d88b62d18f..e2f7fbdd86d6d 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -144,7 +144,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -207,7 +207,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -275,7 +275,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 9bf840f3bbbb2..252fb14ea800a 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts during emit) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -248,7 +248,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts during emit) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -407,7 +407,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts during emit) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -559,7 +559,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts during emit) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 71c8d998f63b8..af1b341d92267 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts during emit) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -182,7 +182,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts during emit) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -263,7 +263,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts during emit) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -349,7 +349,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts during emit) /user/username/projects/myproject/a.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 b6d899adf9f8e..60beaaed165df 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 @@ -102,7 +102,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts during emit) /user/username/projects/myproject/e.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -387,7 +387,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts during emit) /user/username/projects/myproject/e.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -589,7 +589,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts during emit) /user/username/projects/myproject/e.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -820,7 +820,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts during emit) /user/username/projects/myproject/e.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 c9b7828bdc063..d26d88e0ed788 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 @@ -102,7 +102,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts during emit) /user/username/projects/myproject/e.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -246,7 +246,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts during emit) /user/username/projects/myproject/e.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -352,7 +352,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts during emit) /user/username/projects/myproject/e.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -442,7 +442,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts during emit) /user/username/projects/myproject/e.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 79b97b3584b34..b047395e54c36 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 @@ -88,7 +88,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -405,7 +405,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -623,7 +623,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -824,7 +824,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 71602b4878bef..047ffe7acef72 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 @@ -88,7 +88,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -294,7 +294,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -378,7 +378,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -468,7 +468,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 e27f9cb1eb9ae..4ae39cf717c6e 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 @@ -97,7 +97,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -455,7 +455,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) /user/username/projects/myproject/lib2/data2.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -694,7 +694,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) /user/username/projects/myproject/lib2/data2.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -916,7 +916,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) /user/username/projects/myproject/lib2/data2.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 e1e36b0ad1ffd..06bedaa8c8c36 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 @@ -97,7 +97,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (computed .d.ts during emit) /user/username/projects/myproject/app.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -329,7 +329,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) /user/username/projects/myproject/lib2/data2.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -419,7 +419,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) /user/username/projects/myproject/lib2/data2.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: @@ -515,7 +515,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) /user/username/projects/myproject/lib2/data2.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/app.ts: 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 13f067bb7a6f2..a119a584dec57 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 @@ -74,7 +74,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (used version) /user/username/projects/noemitonerror/src/other.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -204,7 +204,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -260,7 +260,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -410,7 +410,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -540,7 +540,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -594,7 +594,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -708,7 +708,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js index 35902a754824d..252104873b14f 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js @@ -74,7 +74,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (used version) /user/username/projects/noemitonerror/src/other.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -128,7 +128,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -184,7 +184,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -276,7 +276,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -330,7 +330,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -384,7 +384,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: @@ -440,7 +440,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/noemitonerror/tsconfig.json: {"pollingInterval":250} /user/username/projects/noemitonerror/shared/types/db.ts: diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/jsxImportSource-option-changed.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/jsxImportSource-option-changed.js index ff6a4b9de1001..ddf7e014d8c96 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/jsxImportSource-option-changed.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/jsxImportSource-option-changed.js @@ -77,7 +77,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/react/jsx-runtime/index.d.ts (used version) /user/username/projects/myproject/index.tsx (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/node_modules/react/jsx-runtime/index.d.ts: 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 364f3df7b258d..6ff6a30c7d913 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 @@ -65,7 +65,7 @@ c:/a/lib/lib.d.ts (used version) c:/project/a.ts (used version) c:/project/b.ts (used version) -WatchedFiles:: +PolledWatches:: c:/project/tsconfig.json: {"pollingInterval":250} c:/project/a.ts: @@ -146,7 +146,7 @@ Shape signatures in builder refreshed for:: c:/project/a.ts (computed .d.ts) c:/project/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: c:/project/tsconfig.json: {"pollingInterval":250} c:/project/a.ts: 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 2d58a4f9238af..3d719e35ec026 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 @@ -65,7 +65,7 @@ c:/a/lib/lib.d.ts (used version) c:/project/a.ts (used version) c:/project/b.ts (used version) -WatchedFiles:: +PolledWatches:: c:/project/tsconfig.json: {"pollingInterval":250} c:/project/a.ts: @@ -146,7 +146,7 @@ Shape signatures in builder refreshed for:: c:/project/a.ts (computed .d.ts) c:/project/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: c:/project/tsconfig.json: {"pollingInterval":250} c:/project/a.ts: 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 47cabeca4a004..dd0360ecf230d 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 @@ -62,7 +62,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/b.ts: @@ -172,7 +172,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/b.ts: 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 ed4b3c5db3c0c..fa61e4c157c7c 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 @@ -71,7 +71,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/link.ts (used version) /user/username/projects/myproject/b.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/xy.ts: @@ -165,7 +165,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/xy.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/xy.ts: 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 e1789660abcaa..627872249dd1a 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/logger.ts (used version) /user/username/projects/myproject/another.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/another.ts: @@ -126,7 +126,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/another.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/another.ts: 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 876c3b455d844..8ffc5523766c1 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 @@ -62,7 +62,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/b.ts: @@ -172,7 +172,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/b.ts: 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 091fb5e93263c..2259ba75ba24d 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 @@ -71,7 +71,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/link.ts (used version) /user/username/projects/myproject/b.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/xy.ts: @@ -165,7 +165,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/xy.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/xy.ts: 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 bd56aff0b1d2f..abdc3a91b2866 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 @@ -66,7 +66,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/b.ts: @@ -182,7 +182,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/b.ts: 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 04eeeb0e9eb88..fc5a7c8a714d2 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 @@ -75,7 +75,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/link.ts (used version) /user/username/projects/myproject/b.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/xy.ts: @@ -175,7 +175,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/xy.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/xy.ts: 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 af6ed78c1726e..cb4873bd98028 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 @@ -70,7 +70,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/b.ts: @@ -188,7 +188,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/b.ts: 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 01946c6f288d1..c591a5836a38d 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 @@ -79,7 +79,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/link.ts (used version) /user/username/projects/myproject/b.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/xy.ts: @@ -181,7 +181,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/xy.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/xy.ts: 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 194777303eb65..6b48cbe015733 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 @@ -70,7 +70,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/b.ts: @@ -188,7 +188,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/b.ts: 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 f6e5fd17ffbf3..fb950ca2364f6 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 @@ -79,7 +79,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/link.ts (used version) /user/username/projects/myproject/b.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/xy.ts: @@ -181,7 +181,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/xy.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/xy.ts: 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 fdb35859ec7da..e05d219d95d98 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 @@ -93,7 +93,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/modulea.ts (used version) /user/username/projects/myproject/moduleb.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/modulea.ts: @@ -202,7 +202,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/modulea.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/modulea.ts: 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 9c1c407b0d69e..17e086e561767 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/logger.ts (used version) /user/username/projects/myproject/another.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/another.ts: @@ -122,7 +122,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/another.ts: diff --git a/tests/baselines/reference/tscWatch/incremental/editing-module-augmentation-incremental.js b/tests/baselines/reference/tscWatch/incremental/editing-module-augmentation-incremental.js index c2346e39d96e6..3ecfcbaa4c3a6 100644 --- a/tests/baselines/reference/tscWatch/incremental/editing-module-augmentation-incremental.js +++ b/tests/baselines/reference/tscWatch/incremental/editing-module-augmentation-incremental.js @@ -52,7 +52,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/src/index.ts (used version) /users/username/projects/project/src/types/classnames.d.ts (used version) -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -175,7 +175,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/src/types/classnames.d.ts (used version) /users/username/projects/project/src/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: FsWatches:: 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 d2c816d7b22f3..79d1e91715ce6 100644 --- a/tests/baselines/reference/tscWatch/incremental/editing-module-augmentation-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/editing-module-augmentation-watch.js @@ -57,7 +57,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/src/index.ts (used version) /users/username/projects/project/src/types/classnames.d.ts (used version) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/src/index.ts: @@ -200,7 +200,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/src/types/classnames.d.ts (used version) /users/username/projects/project/src/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/src/index.ts: diff --git a/tests/baselines/reference/tscWatch/incremental/importHelpers-backing-types-removed-incremental.js b/tests/baselines/reference/tscWatch/incremental/importHelpers-backing-types-removed-incremental.js index ebc849b3d4904..8b46f440fa4b9 100644 --- a/tests/baselines/reference/tscWatch/incremental/importHelpers-backing-types-removed-incremental.js +++ b/tests/baselines/reference/tscWatch/incremental/importHelpers-backing-types-removed-incremental.js @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/node_modules/tslib/index.d.ts (used version) /users/username/projects/project/index.tsx (used version) -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -150,7 +150,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (computed .d.ts) -WatchedFiles:: +PolledWatches:: FsWatches:: 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 6d67f5ccb89ef..efbeec085c2ad 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 @@ -54,7 +54,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/node_modules/tslib/index.d.ts (used version) /users/username/projects/project/index.tsx (used version) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/index.tsx: @@ -121,7 +121,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /users/username/projects/project/index.tsx (used version) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/index.tsx: diff --git a/tests/baselines/reference/tscWatch/incremental/incremental-with-circular-references-incremental.js b/tests/baselines/reference/tscWatch/incremental/incremental-with-circular-references-incremental.js index 9fcbe347f8e5f..2bcb7123c7c6f 100644 --- a/tests/baselines/reference/tscWatch/incremental/incremental-with-circular-references-incremental.js +++ b/tests/baselines/reference/tscWatch/incremental/incremental-with-circular-references-incremental.js @@ -71,7 +71,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/a.ts (used version) /users/username/projects/project/index.ts (used version) -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -246,7 +246,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/c.ts (used version) /users/username/projects/project/b.ts (used version) -WatchedFiles:: +PolledWatches:: FsWatches:: 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 1f873601068e3..92ebbdc2c3821 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 @@ -76,7 +76,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/a.ts (used version) /users/username/projects/project/index.ts (used version) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/a.ts: @@ -272,7 +272,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/c.ts (used version) /users/username/projects/project/b.ts (used version) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/a.ts: diff --git a/tests/baselines/reference/tscWatch/incremental/jsxImportSource-backing-types-added-incremental.js b/tests/baselines/reference/tscWatch/incremental/jsxImportSource-backing-types-added-incremental.js index 8f677cebaf87d..d5ee89a9fe807 100644 --- a/tests/baselines/reference/tscWatch/incremental/jsxImportSource-backing-types-added-incremental.js +++ b/tests/baselines/reference/tscWatch/incremental/jsxImportSource-backing-types-added-incremental.js @@ -48,7 +48,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /users/username/projects/project/index.tsx (used version) -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -155,7 +155,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts (used version) /users/username/projects/project/index.tsx (computed .d.ts) -WatchedFiles:: +PolledWatches:: FsWatches:: 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 10a69ac0c5780..2ee9ffeb90c1a 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 @@ -50,7 +50,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /users/username/projects/project/index.tsx (used version) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/index.tsx: @@ -174,7 +174,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts (used version) /users/username/projects/project/index.tsx (computed .d.ts) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/index.tsx: diff --git a/tests/baselines/reference/tscWatch/incremental/jsxImportSource-backing-types-removed-incremental.js b/tests/baselines/reference/tscWatch/incremental/jsxImportSource-backing-types-removed-incremental.js index a083115e1a363..3fad9dd398bff 100644 --- a/tests/baselines/reference/tscWatch/incremental/jsxImportSource-backing-types-removed-incremental.js +++ b/tests/baselines/reference/tscWatch/incremental/jsxImportSource-backing-types-removed-incremental.js @@ -60,7 +60,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts (used version) /users/username/projects/project/index.tsx (used version) -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -164,7 +164,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (computed .d.ts) -WatchedFiles:: +PolledWatches:: FsWatches:: 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 1d9a9a2bcebb5..299ac5c030b31 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 @@ -65,7 +65,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts (used version) /users/username/projects/project/index.tsx (used version) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/index.tsx: @@ -187,7 +187,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (computed .d.ts) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/index.tsx: diff --git a/tests/baselines/reference/tscWatch/incremental/jsxImportSource-option-changed-incremental.js b/tests/baselines/reference/tscWatch/incremental/jsxImportSource-option-changed-incremental.js index 52a443646338a..46e0f49f7219f 100644 --- a/tests/baselines/reference/tscWatch/incremental/jsxImportSource-option-changed-incremental.js +++ b/tests/baselines/reference/tscWatch/incremental/jsxImportSource-option-changed-incremental.js @@ -83,7 +83,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts (used version) /users/username/projects/project/index.tsx (used version) -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -199,7 +199,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/node_modules/preact/jsx-runtime/index.d.ts (used version) /users/username/projects/project/index.tsx (computed .d.ts) -WatchedFiles:: +PolledWatches:: FsWatches:: 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 00be2119f4948..24dad1c45fbd9 100644 --- a/tests/baselines/reference/tscWatch/incremental/jsxImportSource-option-changed-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/jsxImportSource-option-changed-watch.js @@ -88,7 +88,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts (used version) /users/username/projects/project/index.tsx (used version) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/index.tsx: @@ -222,7 +222,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/node_modules/preact/jsx-runtime/index.d.ts (used version) /users/username/projects/project/index.tsx (computed .d.ts) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/index.tsx: diff --git a/tests/baselines/reference/tscWatch/incremental/module-compilation/own-file-emit-with-errors-incremental.js b/tests/baselines/reference/tscWatch/incremental/module-compilation/own-file-emit-with-errors-incremental.js index fcadad4ec2672..d663770382b50 100644 --- a/tests/baselines/reference/tscWatch/incremental/module-compilation/own-file-emit-with-errors-incremental.js +++ b/tests/baselines/reference/tscWatch/incremental/module-compilation/own-file-emit-with-errors-incremental.js @@ -52,7 +52,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (used version) /users/username/projects/project/file2.ts (used version) -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -164,7 +164,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: FsWatches:: 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 2cbc90a8a0bd5..43ae296b72ee5 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 @@ -54,7 +54,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (used version) /users/username/projects/project/file2.ts (used version) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/file1.ts: @@ -180,7 +180,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/file1.ts: diff --git a/tests/baselines/reference/tscWatch/incremental/module-compilation/own-file-emit-without-errors-incremental.js b/tests/baselines/reference/tscWatch/incremental/module-compilation/own-file-emit-without-errors-incremental.js index 3332c7e75e276..2c7a1952169b6 100644 --- a/tests/baselines/reference/tscWatch/incremental/module-compilation/own-file-emit-without-errors-incremental.js +++ b/tests/baselines/reference/tscWatch/incremental/module-compilation/own-file-emit-without-errors-incremental.js @@ -44,7 +44,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (used version) /users/username/projects/project/file2.ts (used version) -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -136,7 +136,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: FsWatches:: 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 accec05fc2259..90376eaddab8e 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (used version) /users/username/projects/project/file2.ts (used version) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/file1.ts: @@ -158,7 +158,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/file1.ts: diff --git a/tests/baselines/reference/tscWatch/incremental/module-compilation/with---out-incremental.js b/tests/baselines/reference/tscWatch/incremental/module-compilation/with---out-incremental.js index 8a71cb9ba18c3..6bb73abf708bf 100644 --- a/tests/baselines/reference/tscWatch/incremental/module-compilation/with---out-incremental.js +++ b/tests/baselines/reference/tscWatch/incremental/module-compilation/with---out-incremental.js @@ -38,7 +38,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: FsWatches:: 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 bd0bf92eaa2ed..3ea9744c8d374 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 @@ -43,7 +43,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/file1.ts: diff --git a/tests/baselines/reference/tscWatch/incremental/own-file-emit-with-errors-incremental.js b/tests/baselines/reference/tscWatch/incremental/own-file-emit-with-errors-incremental.js index 7246a7f1db2ba..0f56e5c6b9d8a 100644 --- a/tests/baselines/reference/tscWatch/incremental/own-file-emit-with-errors-incremental.js +++ b/tests/baselines/reference/tscWatch/incremental/own-file-emit-with-errors-incremental.js @@ -52,7 +52,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (used version) /users/username/projects/project/file2.ts (used version) -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -156,7 +156,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) /users/username/projects/project/file2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: FsWatches:: 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 7acf640860c65..c0ab4a1140c40 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 @@ -54,7 +54,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (used version) /users/username/projects/project/file2.ts (used version) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/file1.ts: @@ -172,7 +172,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) /users/username/projects/project/file2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/file1.ts: diff --git a/tests/baselines/reference/tscWatch/incremental/own-file-emit-without-errors/with-commandline-parameters-that-are-not-relative-incremental.js b/tests/baselines/reference/tscWatch/incremental/own-file-emit-without-errors/with-commandline-parameters-that-are-not-relative-incremental.js index 4bcf107f5802e..8385fbec6ede3 100644 --- a/tests/baselines/reference/tscWatch/incremental/own-file-emit-without-errors/with-commandline-parameters-that-are-not-relative-incremental.js +++ b/tests/baselines/reference/tscWatch/incremental/own-file-emit-without-errors/with-commandline-parameters-that-are-not-relative-incremental.js @@ -44,7 +44,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (used version) /users/username/projects/project/file2.ts (used version) -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -128,7 +128,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (computed .d.ts) /users/username/projects/project/file1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: FsWatches:: 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 2d0eb07510e89..632e08bb1cd0b 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (used version) /users/username/projects/project/file2.ts (used version) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/file1.ts: @@ -150,7 +150,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (computed .d.ts) /users/username/projects/project/file1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/file1.ts: diff --git a/tests/baselines/reference/tscWatch/incremental/own-file-emit-without-errors/without-commandline-options-incremental.js b/tests/baselines/reference/tscWatch/incremental/own-file-emit-without-errors/without-commandline-options-incremental.js index f4c092fab8618..61725977c370f 100644 --- a/tests/baselines/reference/tscWatch/incremental/own-file-emit-without-errors/without-commandline-options-incremental.js +++ b/tests/baselines/reference/tscWatch/incremental/own-file-emit-without-errors/without-commandline-options-incremental.js @@ -44,7 +44,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (used version) /users/username/projects/project/file2.ts (used version) -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -128,7 +128,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (computed .d.ts) /users/username/projects/project/file1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: FsWatches:: 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 0a1d182a0cf76..eb062ae385521 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (used version) /users/username/projects/project/file2.ts (used version) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/file1.ts: @@ -150,7 +150,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (computed .d.ts) /users/username/projects/project/file1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/file1.ts: diff --git a/tests/baselines/reference/tscWatch/incremental/tsbuildinfo-has-error.js b/tests/baselines/reference/tscWatch/incremental/tsbuildinfo-has-error.js index 1008526bf8ad8..3ea9c3ce5ccea 100644 --- a/tests/baselines/reference/tscWatch/incremental/tsbuildinfo-has-error.js +++ b/tests/baselines/reference/tscWatch/incremental/tsbuildinfo-has-error.js @@ -46,7 +46,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /src/project/main.ts (used version) -WatchedFiles:: +PolledWatches:: /src/project/tsconfig.json: {"pollingInterval":250} /src/project/main.ts: diff --git a/tests/baselines/reference/tscWatch/incremental/when-file-with-ambient-global-declaration-file-is-deleted-incremental.js b/tests/baselines/reference/tscWatch/incremental/when-file-with-ambient-global-declaration-file-is-deleted-incremental.js index fa9ddd25d6b9a..e1fc29257bcd4 100644 --- a/tests/baselines/reference/tscWatch/incremental/when-file-with-ambient-global-declaration-file-is-deleted-incremental.js +++ b/tests/baselines/reference/tscWatch/incremental/when-file-with-ambient-global-declaration-file-is-deleted-incremental.js @@ -46,7 +46,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/globals.d.ts (used version) /users/username/projects/project/index.ts (used version) -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -129,7 +129,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /users/username/projects/project/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: FsWatches:: 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 2ed47601df67a..72c20546b75db 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 @@ -51,7 +51,7 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/globals.d.ts (used version) /users/username/projects/project/index.ts (used version) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/globals.d.ts: @@ -148,7 +148,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /users/username/projects/project/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/index.ts: diff --git a/tests/baselines/reference/tscWatch/incremental/with---out-incremental.js b/tests/baselines/reference/tscWatch/incremental/with---out-incremental.js index 2fb8c52d18eab..604a3ea3abf48 100644 --- a/tests/baselines/reference/tscWatch/incremental/with---out-incremental.js +++ b/tests/baselines/reference/tscWatch/incremental/with---out-incremental.js @@ -38,7 +38,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: FsWatches:: diff --git a/tests/baselines/reference/tscWatch/incremental/with---out-watch.js b/tests/baselines/reference/tscWatch/incremental/with---out-watch.js index efed6bd5fcebd..ca7f8c1c82341 100644 --- a/tests/baselines/reference/tscWatch/incremental/with---out-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/with---out-watch.js @@ -43,7 +43,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /users/username/projects/project/tsconfig.json: {"pollingInterval":250} /users/username/projects/project/file1.ts: diff --git a/tests/baselines/reference/tscWatch/moduleResolution/diagnostics-from-cache.js b/tests/baselines/reference/tscWatch/moduleResolution/diagnostics-from-cache.js index 4297d45a262b8..604c84f73f948 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/diagnostics-from-cache.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/diagnostics-from-cache.js @@ -60,7 +60,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/index.ts: 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 d424eb6aae7a7..81fcd9657c35d 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 @@ -98,7 +98,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.es2016.full.d.ts (used version) /user/username/projects/myproject/src/filea.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: @@ -205,7 +205,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: @@ -311,7 +311,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: @@ -424,7 +424,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: @@ -518,7 +518,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: @@ -608,7 +608,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: 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 b4d17ad0ea21f..f6f6f5cdc808e 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 @@ -105,7 +105,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.es2016.full.d.ts (used version) /user/username/projects/myproject/src/filea.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: @@ -211,7 +211,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: @@ -318,7 +318,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: @@ -415,7 +415,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: @@ -517,7 +517,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: @@ -630,7 +630,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/filea.ts: 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 faf85a779d441..1732ffec511c5 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 @@ -101,7 +101,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg2/build/index.d.ts (used version) /user/username/projects/myproject/packages/pkg1/index.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/pkg1/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/index.ts: @@ -205,7 +205,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg2/build/other.d.ts (used version) /user/username/projects/myproject/packages/pkg1/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/pkg1/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/index.ts: @@ -308,7 +308,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg2/build/index.d.ts (used version) /user/username/projects/myproject/packages/pkg1/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/pkg1/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/index.ts: 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 691f54f23e647..a1939153637f7 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 @@ -54,7 +54,7 @@ Shape signatures in builder refreshed for:: /project/src/deps.d.ts (used version) /project/src/index.ts (used version) -WatchedFiles:: +PolledWatches:: /project/tsconfig.json: {"pollingInterval":250} /project/src/deps.d.ts: @@ -110,7 +110,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /project/src/index.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /project/tsconfig.json: {"pollingInterval":250} /project/src/deps.d.ts: 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 788544a8a4d75..023875a9b5daa 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 @@ -58,7 +58,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/app.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/app.ts: 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 82b783389c723..3041553402057 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 @@ -64,7 +64,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/app.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/app.ts: @@ -134,7 +134,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/app.ts: 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 c0b908dcd9b68..bcff57fa9813b 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 @@ -53,7 +53,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/app.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/app.ts: 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 9c3f6434d4a95..1a1b41e4161aa 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 @@ -43,7 +43,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/app.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/app.ts: @@ -101,7 +101,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/app.ts: @@ -149,7 +149,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/app.ts: 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 5cf2529fec089..415f4e724d1c6 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 @@ -43,7 +43,7 @@ Shape signatures in builder refreshed for:: /a.ts (used version) /a/lib/lib.d.ts (used version) -WatchedFiles:: +PolledWatches:: /tsconfig.json: {"pollingInterval":250} /a.ts: @@ -97,7 +97,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /tsconfig.json: {"pollingInterval":250} /a.ts: @@ -142,7 +142,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /tsconfig.json: {"pollingInterval":250} /a.ts: 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 08228362eee56..81ebe8f766f96 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 @@ -43,7 +43,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/commonfile1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: @@ -98,7 +98,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (computed .d.ts) /a/b/commonfile1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: 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 b6820a8136a35..4e894d376bf90 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 @@ -45,7 +45,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/file1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/file1.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -98,7 +98,7 @@ Shape signatures in builder refreshed for:: /a/b/modulefile.ts (computed .d.ts) /a/b/file1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/file1.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 8ac1c47123a8a..b411e8f29b9a0 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 @@ -46,7 +46,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/f1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/f1.ts: @@ -99,7 +99,7 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (computed .d.ts) /a/b/f1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/f1.ts: 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 e5153a58cc5d5..6412c1f3fe796 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 @@ -43,7 +43,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/f1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/f1.ts: @@ -98,7 +98,7 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (computed .d.ts) /a/b/f1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/f1.ts: 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 c3f54c618b891..386ffce3d21ef 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 @@ -43,7 +43,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/project/file1.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/project/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/project/file1.ts: @@ -100,7 +100,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/project/file2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/project/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/project/file1.ts: 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 ad267c4268688..6eedb990ad3a6 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 @@ -43,7 +43,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/app.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/app.ts: 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 762567c6c8db0..a91447e658f17 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) /a/b/f2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/f1.ts: @@ -103,7 +103,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/f1.ts: 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 d2ff57657c51f..bc3dfcbf39e8f 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/change-module-to-none.js +++ b/tests/baselines/reference/tscWatch/programUpdates/change-module-to-none.js @@ -44,7 +44,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/f1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/f1.ts: @@ -103,7 +103,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/f1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/f1.ts: 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 198d243273d31..91532cee6010c 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 @@ -55,7 +55,7 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (used version) /a/b/f1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/f1.ts: {"pollingInterval":250} /a/b/f2.ts: @@ -139,7 +139,7 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (computed .d.ts) /a/b/f1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/f1.ts: {"pollingInterval":250} /a/b/f2.ts: 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 b57fadf11725a..14d1c5b9cbfc8 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 @@ -55,7 +55,7 @@ Shape signatures in builder refreshed for:: /a/c/f2.ts (used version) /a/c/f3.ts (used version) -WatchedFiles:: +PolledWatches:: /a/c/tsconfig.json: {"pollingInterval":250} /a/c/f2.ts: 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 0c83d47340764..54804d4628a68 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/config-file-is-deleted.js +++ b/tests/baselines/reference/tscWatch/programUpdates/config-file-is-deleted.js @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) /a/b/f2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/f1.ts: @@ -88,7 +88,7 @@ Output:: -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/f1.ts: 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 57787e790f464..84112ef59b883 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 @@ -52,7 +52,7 @@ Shape signatures in builder refreshed for:: /compiler/lib.es5.d.ts (used version) /src/app.ts (used version) -WatchedFiles:: +PolledWatches:: /src/tsconfig.json: {"pollingInterval":250} /src/app.ts: @@ -107,7 +107,7 @@ Shape signatures in builder refreshed for:: /compiler/lib.es2015.promise.d.ts (used version) /src/app.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /src/tsconfig.json: {"pollingInterval":250} /src/app.ts: 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 4d771c7b10bb2..36f4692024f7c 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 @@ -61,7 +61,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/f1.ts (computed .d.ts during emit) /user/username/projects/myproject/f2.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/f1.ts: @@ -190,7 +190,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/new-file.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/f1.ts: @@ -308,7 +308,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/f1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/f1.ts: 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 522602435e274..40d90f9366ebf 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 @@ -58,7 +58,7 @@ Shape signatures in builder refreshed for:: /a/b/c/f1.ts (used version) /a/b/d/f2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/c/f1.ts: diff --git a/tests/baselines/reference/tscWatch/programUpdates/create-watch-without-config-file.js b/tests/baselines/reference/tscWatch/programUpdates/create-watch-without-config-file.js index 98d5040745594..3e59c1f096546 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/create-watch-without-config-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/create-watch-without-config-file.js @@ -59,7 +59,7 @@ Shape signatures in builder refreshed for:: /a/b/c/module.d.ts (used version) /a/b/c/app.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/c/app.ts: {"pollingInterval":250} /a/b/c/module.d.ts: diff --git a/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure-2.js b/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure-2.js index 5df14e295f4e7..0d6c327cf644f 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure-2.js +++ b/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure-2.js @@ -52,7 +52,7 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (used version) /a/b/f1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/f1.ts: {"pollingInterval":250} /a/b/f2.ts: @@ -148,7 +148,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/f1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/f1.ts: {"pollingInterval":250} /a/c/f3.ts: diff --git a/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure.js b/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure.js index 45be24ea2015e..6b2c406752fde 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure.js +++ b/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure.js @@ -52,7 +52,7 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (used version) /a/b/f1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/f1.ts: {"pollingInterval":250} /a/b/f2.ts: @@ -147,7 +147,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/f1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/f1.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 f51b912233392..57e4811b6b5b1 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 @@ -55,7 +55,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) /a/b/commonfile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: @@ -112,7 +112,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: @@ -175,7 +175,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: @@ -236,7 +236,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: @@ -289,7 +289,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: 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 043ff1eda9909..a9f5b9b1eb71e 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) /a/b/f2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/f1.ts: @@ -110,7 +110,7 @@ No cached semantic diagnostics in the builder:: Shape signatures in builder refreshed for:: /a/b/f1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/f1.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 39c6e5bed2a92..9f3b0cd7eaf1d 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 @@ -55,7 +55,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) /a/b/commonfile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: 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 7a33200b6c214..78da562679034 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/handle-recreated-files-correctly.js +++ b/tests/baselines/reference/tscWatch/programUpdates/handle-recreated-files-correctly.js @@ -55,7 +55,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) /a/b/commonfile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: @@ -122,7 +122,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (computed .d.ts) /a/b/commonfile1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: @@ -179,7 +179,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: @@ -237,7 +237,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (computed .d.ts) /a/b/commonfile1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: 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 86c3a03416cf9..3cc423f73bf56 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 @@ -51,7 +51,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/commonfile1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/commonfile1.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -103,7 +103,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (computed .d.ts) /a/b/commonfile1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/commonfile1.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 b9b4bf2d1b380..97e0955f647d8 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 @@ -45,7 +45,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/app.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/app.ts: diff --git a/tests/baselines/reference/tscWatch/programUpdates/non-existing-directories-listed-in-config-file-input-array-should-be-able-to-handle-@types-if-input-file-list-is-empty.js b/tests/baselines/reference/tscWatch/programUpdates/non-existing-directories-listed-in-config-file-input-array-should-be-able-to-handle-@types-if-input-file-list-is-empty.js index 3cfe2cfe8fb3f..73614e2890802 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/non-existing-directories-listed-in-config-file-input-array-should-be-able-to-handle-@types-if-input-file-list-is-empty.js +++ b/tests/baselines/reference/tscWatch/programUpdates/non-existing-directories-listed-in-config-file-input-array-should-be-able-to-handle-@types-if-input-file-list-is-empty.js @@ -48,7 +48,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/tsconfig.json: {"pollingInterval":250} 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 d906f6ddfce3b..27b8dc2f65b5f 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 @@ -42,7 +42,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/node_modules/@types: 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 4cc5fd6468daa..ed725b6e0e3f2 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /a/b/modulefile.ts (used version) /a/b/file1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1.ts: @@ -124,7 +124,7 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (computed .d.ts) /a/b/modulefile1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1.ts: @@ -191,7 +191,7 @@ Shape signatures in builder refreshed for:: /a/b/modulefile.ts (computed .d.ts) /a/b/file1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1.ts: 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 06375aa9968d2..abf4e5c874f22 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 @@ -46,7 +46,7 @@ Shape signatures in builder refreshed for:: /a/b/modulefile.ts (used version) /a/b/file1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/file1.ts: {"pollingInterval":250} /a/b/modulefile.ts: @@ -112,7 +112,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/file1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/file1.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -160,7 +160,7 @@ Shape signatures in builder refreshed for:: /a/b/modulefile.ts (computed .d.ts) /a/b/file1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/file1.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 9475250ea4672..44d7cedf664a3 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 @@ -54,7 +54,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/b.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -123,7 +123,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 f70bf62e844ee..948d87b64fbb0 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 @@ -50,7 +50,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) /user/username/projects/myproject/b.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -121,7 +121,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /user/username/projects/myproject/b.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 7ba410cb66613..84b3ec9501f9d 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 @@ -43,7 +43,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/src/app.ts (used version) -WatchedFiles:: +PolledWatches:: /a/tsconfig.json: {"pollingInterval":250} /a/src/app.ts: 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 b9abf94d54897..59fe7fa4520b5 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 @@ -59,7 +59,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/commonfile1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: 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 2de1c576324bd..24b7a918ad874 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 @@ -176,7 +176,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/file1.ts (computed .d.ts during emit) /user/username/projects/myproject/src/file2.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: @@ -231,7 +231,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: @@ -311,7 +311,7 @@ No cached semantic diagnostics in the builder:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file3.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: @@ -355,7 +355,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: 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 1b5477c76ad6d..7a553eb1c7ac6 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 @@ -176,7 +176,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/file1.ts (computed .d.ts during emit) /user/username/projects/myproject/src/file2.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: @@ -231,7 +231,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: @@ -311,7 +311,7 @@ No cached semantic diagnostics in the builder:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file3.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: @@ -355,7 +355,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: 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 bacc4604a8f0a..75b43c05792ec 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 @@ -176,7 +176,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/file1.ts (used version) /user/username/projects/myproject/src/file2.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: @@ -223,7 +223,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: @@ -303,7 +303,7 @@ No cached semantic diagnostics in the builder:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file3.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: @@ -343,7 +343,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: 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 9cffda06a8a5e..fdcfcdc9971a6 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 @@ -174,7 +174,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: @@ -218,7 +218,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: @@ -297,7 +297,7 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: @@ -349,7 +349,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: 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 b4d1ed75c1fb1..9a342623b4189 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 @@ -176,7 +176,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/file1.ts (computed .d.ts during emit) /user/username/projects/myproject/src/file2.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: @@ -231,7 +231,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: @@ -311,7 +311,7 @@ No cached semantic diagnostics in the builder:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file3.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: @@ -355,7 +355,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: 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 aa5d9298a3528..6642e485a953d 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 @@ -176,7 +176,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/file1.ts (used version) /user/username/projects/myproject/src/file2.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: @@ -223,7 +223,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: @@ -303,7 +303,7 @@ No cached semantic diagnostics in the builder:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file3.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: @@ -343,7 +343,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/file1.ts: 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 a31dde81c0ad3..73a11561c976f 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 @@ -57,7 +57,7 @@ Shape signatures in builder refreshed for:: /a/b/node_modules/module1.ts (used version) /a/b/file1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1.ts: @@ -119,7 +119,7 @@ Shape signatures in builder refreshed for:: /a/module1.ts (computed .d.ts) /a/b/file1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/file1.ts: 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 1be76002e0539..0ad441a6cd8a2 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 @@ -58,7 +58,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) /a/b/commonfile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: @@ -123,7 +123,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (computed .d.ts) /a/b/commonfile1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: @@ -183,7 +183,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: diff --git a/tests/baselines/reference/tscWatch/programUpdates/should-support-files-without-extensions.js b/tests/baselines/reference/tscWatch/programUpdates/should-support-files-without-extensions.js index 23f5e297712de..d051f7a27fcb9 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/should-support-files-without-extensions.js +++ b/tests/baselines/reference/tscWatch/programUpdates/should-support-files-without-extensions.js @@ -40,7 +40,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/compile (used version) -WatchedFiles:: +PolledWatches:: /a/compile: {"pollingInterval":250} /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 c0d8c4c2bee14..1c34b727a3270 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 @@ -60,7 +60,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) /a/b/commonfile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: diff --git a/tests/baselines/reference/tscWatch/programUpdates/shouldnt-report-error-about-unused-function-incorrectly-when-file-changes-from-global-to-module.js b/tests/baselines/reference/tscWatch/programUpdates/shouldnt-report-error-about-unused-function-incorrectly-when-file-changes-from-global-to-module.js index 88fa37654e374..5736357e32a19 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/shouldnt-report-error-about-unused-function-incorrectly-when-file-changes-from-global-to-module.js +++ b/tests/baselines/reference/tscWatch/programUpdates/shouldnt-report-error-about-unused-function-incorrectly-when-file-changes-from-global-to-module.js @@ -45,7 +45,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/file.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/file.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -100,7 +100,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/file.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/file.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 b7f7ad68ab8d0..5d600f2b2838a 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 @@ -51,7 +51,7 @@ Shape signatures in builder refreshed for:: /a/c/f2.ts (used version) /a/d/f3.ts (used version) -WatchedFiles:: +PolledWatches:: /a/c/f2.ts: {"pollingInterval":250} /a/d/f3.ts: @@ -110,7 +110,7 @@ Shape signatures in builder refreshed for:: /a/d/f3.ts (used version) /a/b/f1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/c/f2.ts: {"pollingInterval":250} {"pollingInterval":250} 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 f2b7cb539d4ce..9843a86872ca1 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) /a/b/node_modules/@types/node/index.d.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/app.ts: 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 803a533273a19..b537d8b2b1276 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 @@ -63,7 +63,7 @@ Shape signatures in builder refreshed for:: /a.ts (used version) /a/lib/lib.d.ts (used version) -WatchedFiles:: +PolledWatches:: /tsconfig.json: {"pollingInterval":250} /a.ts: @@ -139,7 +139,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /tsconfig.json: {"pollingInterval":250} /a.ts: @@ -188,7 +188,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /tsconfig.json: {"pollingInterval":250} /a.ts: 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 95e0ee0e07ca4..9b0ff371d958f 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /a.ts (used version) /a/lib/lib.d.ts (used version) -WatchedFiles:: +PolledWatches:: /tsconfig.json: {"pollingInterval":250} /a.ts: @@ -111,7 +111,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /tsconfig.json: {"pollingInterval":250} /a.ts: 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 a512881d4ae25..7e6822e923b1a 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 @@ -44,7 +44,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/index.tsx (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/index.tsx: @@ -93,7 +93,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/index.tsx: 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 863261552004c..d5c82e0f9c4d6 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 @@ -50,7 +50,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) /user/username/projects/myproject/b.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -121,7 +121,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -179,7 +179,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -240,7 +240,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 ace10f9801937..3021f65f25d1a 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 @@ -53,7 +53,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -113,7 +113,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -168,7 +168,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -233,7 +233,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -288,7 +288,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 6ead32f11b18b..54e2dbcfe6675 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 @@ -59,7 +59,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -112,7 +112,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -173,7 +173,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 2a5c742a649dd..6da2cd8945455 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 @@ -54,7 +54,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -106,7 +106,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -161,7 +161,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 95789ac46cb14..4ec168b266ff7 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 @@ -54,7 +54,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -106,7 +106,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -161,7 +161,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 1bfeadc1ca36a..6a20f6f721b6b 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 @@ -56,7 +56,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -105,7 +105,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -167,7 +167,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 a51a33889bc94..ef516ef293fd9 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 @@ -51,7 +51,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -99,7 +99,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -155,7 +155,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 5bb3537ed6c7d..57aff9a2883bb 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 @@ -51,7 +51,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -99,7 +99,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -155,7 +155,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 63c61c44f08ce..c494c00575450 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 @@ -45,7 +45,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -122,7 +122,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -175,7 +175,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 06180d79c0633..c5a77755a3a24 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /b.ts (used version) /a/lib/lib.d.ts (used version) -WatchedFiles:: +PolledWatches:: /tsconfig.json: {"pollingInterval":250} /a.ts: @@ -126,7 +126,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /tsconfig.json: {"pollingInterval":250} /a.ts: 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 5605a5bbdcfd4..a172a92d7b781 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 @@ -57,7 +57,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -113,7 +113,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 50d24d6d4864b..755cd6445ed0e 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 @@ -44,7 +44,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -100,7 +100,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -152,7 +152,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -199,7 +199,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 0885277fe0a84..8821b07bb57b1 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 @@ -51,7 +51,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -110,7 +110,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/data.json (computed .d.ts) /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 11e21c59e019b..4663cb0aad98f 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 @@ -43,7 +43,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /home/username/project/src/file1.ts (used version) -WatchedFiles:: +PolledWatches:: /home/username/project/tsconfig.json: {"pollingInterval":250} /home/username/project/src/file1.ts: @@ -96,7 +96,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /home/username/project/src/file2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /home/username/project/tsconfig.json: {"pollingInterval":250} /a/lib/lib.d.ts: 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 20a245b1213ac..bb7fe53a7451c 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/when-creating-extensionless-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/when-creating-extensionless-file.js @@ -54,7 +54,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/index.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/index.ts: @@ -91,7 +91,7 @@ Reloading new file names and options Synchronizing program -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/index.ts: 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 f145ef31c42cc..a715fb4e97c1f 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 @@ -64,7 +64,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/client/folder1/module1.ts (used version) /user/username/projects/myproject/client/linktofolder2/module2.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/client/folder1/module1.ts: @@ -145,7 +145,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/client/linktofolder2/module3.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/client/folder1/module1.ts: 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 38b91ce7bd9fb..b0f41fc3ff848 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 @@ -76,7 +76,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project1/class1.d.ts (used version) /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: @@ -206,7 +206,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: @@ -284,7 +284,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project1/class1.d.ts (used version) /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: @@ -382,7 +382,7 @@ Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detec Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Wild card directory of referenced project -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: @@ -463,7 +463,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project1/class1.d.ts (used version) /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: @@ -583,7 +583,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project1/class1.d.ts (used version) /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: 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 ad61c71070b68..ff8d2a188efdb 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 @@ -71,7 +71,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -129,7 +129,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -189,7 +189,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -253,7 +253,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -312,7 +312,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -367,7 +367,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: @@ -432,7 +432,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/a.ts: 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 b2d5fe243d097..6e9e39b20d6bb 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 @@ -52,7 +52,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) /a/b/commonfile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: @@ -98,7 +98,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: diff --git a/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js b/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js index 13170b2fa14e8..a57a51c0846a8 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js @@ -406,7 +406,7 @@ Dependencies for:: /user/username/projects/sample1/logic/index.d.ts /user/username/projects/sample1/core/index.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/tests/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/tsconfig.json: @@ -540,7 +540,7 @@ function foo() { } Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/tests/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/tsconfig.json: @@ -727,7 +727,7 @@ Dependencies for:: /user/username/projects/sample1/logic/index.d.ts /user/username/projects/sample1/core/index.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/tests/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/tsconfig.json: @@ -987,7 +987,7 @@ Dependencies for:: /user/username/projects/sample1/logic/decls/index.d.ts /user/username/projects/sample1/core/index.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/sample1/tests/tsconfig.json: {"pollingInterval":250} /user/username/projects/sample1/core/tsconfig.json: 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 af88738f9803e..7980675202441 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 @@ -223,7 +223,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts /user/username/projects/transitiveReferences/a/index.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: @@ -390,7 +390,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts /user/username/projects/transitiveReferences/a/index.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: @@ -490,7 +490,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts /user/username/projects/transitiveReferences/a/index.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: @@ -585,7 +585,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts /user/username/projects/transitiveReferences/a/index.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: @@ -680,7 +680,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts /user/username/projects/transitiveReferences/nrefs/a.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: @@ -768,7 +768,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/refs/a.d.ts /user/username/projects/transitiveReferences/b/index.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: @@ -857,7 +857,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/refs/a.d.ts /user/username/projects/transitiveReferences/b/index.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: @@ -947,7 +947,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts /user/username/projects/transitiveReferences/a/index.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: @@ -1045,7 +1045,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts /user/username/projects/transitiveReferences/a/index.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: @@ -1141,7 +1141,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts /user/username/projects/transitiveReferences/a/index.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: 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 08a3e0bb70faa..f1479234f9921 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 @@ -223,7 +223,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts /user/username/projects/transitiveReferences/a/index.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: @@ -386,7 +386,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts /user/username/projects/transitiveReferences/a/index.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: @@ -482,7 +482,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts /user/username/projects/transitiveReferences/a/index.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: @@ -573,7 +573,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts /user/username/projects/transitiveReferences/a/index.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: @@ -664,7 +664,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts /user/username/projects/transitiveReferences/nrefs/a.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: @@ -747,7 +747,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/refs/a.d.ts /user/username/projects/transitiveReferences/b/index.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: @@ -831,7 +831,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/refs/a.d.ts /user/username/projects/transitiveReferences/b/index.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: @@ -919,7 +919,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts /user/username/projects/transitiveReferences/a/index.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: @@ -1013,7 +1013,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts /user/username/projects/transitiveReferences/a/index.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: @@ -1106,7 +1106,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts /user/username/projects/transitiveReferences/a/index.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: {"pollingInterval":250} /user/username/projects/transitivereferences/b/tsconfig.json: diff --git a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js index e59416d41157c..908b9a27d8a01 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js @@ -247,7 +247,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b.d.ts /user/username/projects/transitiveReferences/a.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: @@ -403,7 +403,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b.d.ts /user/username/projects/transitiveReferences/a.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: @@ -491,7 +491,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b.d.ts /user/username/projects/transitiveReferences/a.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: @@ -574,7 +574,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b.d.ts /user/username/projects/transitiveReferences/a.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: @@ -657,7 +657,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b.d.ts /user/username/projects/transitiveReferences/nrefs/a.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: @@ -734,7 +734,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/refs/a.d.ts /user/username/projects/transitiveReferences/b.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: @@ -812,7 +812,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/refs/a.d.ts /user/username/projects/transitiveReferences/b.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: @@ -905,7 +905,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b.d.ts /user/username/projects/transitiveReferences/a.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: @@ -991,7 +991,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b.d.ts /user/username/projects/transitiveReferences/a.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: @@ -1077,7 +1077,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b.d.ts /user/username/projects/transitiveReferences/a.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: 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 d6fb8e845f3b4..e6c00bf7caa05 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 @@ -234,7 +234,7 @@ Dependencies for:: /user/username/projects/transitiveReferences/b.d.ts /user/username/projects/transitiveReferences/a.d.ts -WatchedFiles:: +PolledWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: {"pollingInterval":250} /user/username/projects/transitivereferences/tsconfig.b.json: diff --git a/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js b/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js index 33b26e1a7fb8f..f28115f19586d 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js @@ -56,7 +56,7 @@ Shape signatures in builder refreshed for:: /a/f1.ts (used version) /a/d/f0.ts (used version) -WatchedFiles:: +PolledWatches:: /a/d/f0.ts: {"pollingInterval":250} /a/f1.ts: @@ -129,7 +129,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/d/f0.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/d/f0.ts: {"pollingInterval":250} /a/f1.ts: @@ -187,7 +187,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/d/f0.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/d/f0.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -255,7 +255,7 @@ Shape signatures in builder refreshed for:: /a/f1.ts (computed .d.ts) /a/d/f0.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/d/f0.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 7f5379dbd3bdd..8261fe7e2db78 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/somemodule/index.d.ts (used version) /user/username/projects/myproject/test.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/test.ts: @@ -86,7 +86,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/test.ts: 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 2af93461eba74..7b302d643c276 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/somemodule/index.d.ts (used version) /user/username/projects/myproject/test.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/test.ts: {"pollingInterval":250} /user/username/projects/myproject/node_modules/somemodule/index.d.ts: @@ -80,7 +80,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/test.ts: {"pollingInterval":250} /user/username/projects/myproject/node_modules/somemodule/index.d.ts: 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 57609d7fee74d..152d108b42afa 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 @@ -45,7 +45,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/foo.ts (used version) -WatchedFiles:: +PolledWatches:: /a/foo.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -105,7 +105,7 @@ Shape signatures in builder refreshed for:: /a/bar.d.ts (used version) /a/foo.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/foo.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 825ccaf4de74f..f6aeea6a8e3af 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 @@ -46,7 +46,7 @@ Shape signatures in builder refreshed for:: /a/bar.d.ts (used version) /a/foo.ts (used version) -WatchedFiles:: +PolledWatches:: /a/foo.ts: {"pollingInterval":250} /a/bar.d.ts: @@ -101,7 +101,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/foo.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/foo.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -152,7 +152,7 @@ Shape signatures in builder refreshed for:: /a/bar.d.ts (used version) /a/foo.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/foo.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 6b94e3faa6f89..f3d6f974a40f5 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 @@ -50,7 +50,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/lib/app.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/lib/app.ts: @@ -113,7 +113,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/@myapp/ts-types/types/somefile.define.d.ts (used version) /user/username/projects/myproject/lib/app.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/lib/app.ts: @@ -143,7 +143,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/lib/app.ts: 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 dd8583e823b91..c6a69d019fb23 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 @@ -59,7 +59,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/linked-package/dist/index.d.ts (used version) /user/username/projects/myproject/main/index.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/main/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main/index.ts: 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 e23ca8d7b08c0..5cb399c261b5c 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 @@ -60,7 +60,7 @@ Shape signatures in builder refreshed for:: /a/b/foo.ts (used version) /a/b/bar.d.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/foo.ts: {"pollingInterval":250} /a/b/bar.d.ts: @@ -127,7 +127,7 @@ Shape signatures in builder refreshed for:: /a/b/bar.d.ts (used version) /a/b/foo.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/foo.ts: {"pollingInterval":250} /a/b/bar.d.ts: 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 f6777f2993366..449865df70366 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 @@ -90,7 +90,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/@types/node/base.d.ts (used version) /user/username/projects/myproject/node_modules/@types/node/index.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/worker.ts: @@ -246,7 +246,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/worker.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/worker.ts: @@ -337,7 +337,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/worker.ts: @@ -402,7 +402,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/worker.ts: @@ -511,7 +511,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/@types/node/base.d.ts (used version) /user/username/projects/myproject/node_modules/@types/node/index.d.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/worker.ts: 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 706b472583d97..a414c9273e18e 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 @@ -45,7 +45,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/foo.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/foo.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -113,7 +113,7 @@ Shape signatures in builder refreshed for:: /a/b/foo.ts (computed .d.ts) /a/b/node_modules/@types/node/index.d.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/foo.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 99ec9611c7260..a7c32a5b1ba3b 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 @@ -48,7 +48,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/a.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: @@ -105,7 +105,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/@types/qqq/index.d.ts (used version) /user/username/projects/myproject/a.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/a.ts: {"pollingInterval":250} /a/lib/lib.d.ts: 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 c1ff6a618535a..086974399c481 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 @@ -57,7 +57,7 @@ Shape signatures in builder refreshed for:: /a/b/projects/myproject/src/file1.ts (used version) /a/b/projects/myproject/src/file2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/projects/myproject/src/tsconfig.json: {"pollingInterval":250} /a/b/projects/myproject/src/file1.ts: @@ -132,7 +132,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/projects/myproject/src/file1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/projects/myproject/src/tsconfig.json: {"pollingInterval":250} /a/b/projects/myproject/src/file1.ts: 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 cf0001a5b698a..ccdc92a4e6e84 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 @@ -206,7 +206,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/index.ts (computed .d.ts) /user/username/projects/myproject/packages/b/src/bar.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/a/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: 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 9f48c382554ee..d7f2ce67e3d44 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 @@ -206,7 +206,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/index.ts (computed .d.ts) /user/username/projects/myproject/packages/b/src/bar.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/a/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: 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 5d41b16d1563c..c35e6762b82ca 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 @@ -66,7 +66,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar.ts (used version) /user/username/projects/myproject/packages/a/src/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/a/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: 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 58c2821479c92..951e8981a89f8 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 @@ -206,7 +206,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/index.ts (computed .d.ts) /user/username/projects/myproject/packages/b/src/bar.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/a/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: 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 bf178ce7a07ca..dd654919e1194 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 @@ -206,7 +206,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/index.ts (computed .d.ts) /user/username/projects/myproject/packages/b/src/bar.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/a/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: 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 4734c8e21ad75..61f1da90a42aa 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 @@ -66,7 +66,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar.ts (used version) /user/username/projects/myproject/packages/a/src/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/a/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: 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 3713a8877299e..a85e42c94ad61 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 @@ -66,7 +66,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar.ts (used version) /user/username/projects/myproject/packages/a/src/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/a/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: 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 de442d278d639..51ac9f8997c3f 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 @@ -66,7 +66,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar.ts (used version) /user/username/projects/myproject/packages/a/src/index.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/a/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: 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 7fdbb38b31bb4..2f71fb658696f 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 @@ -206,7 +206,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/test.ts (computed .d.ts) /user/username/projects/myproject/packages/b/src/bar/foo.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/a/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: 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 af900a0118c13..b8375f8d12e0a 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 @@ -206,7 +206,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/test.ts (computed .d.ts) /user/username/projects/myproject/packages/b/src/bar/foo.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/a/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: 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 6867f7850ad08..16c18f45d615c 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 @@ -66,7 +66,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar/foo.ts (used version) /user/username/projects/myproject/packages/a/src/test.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/a/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: 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 ead5b346b67a4..3621c833b852a 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 @@ -206,7 +206,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/test.ts (computed .d.ts) /user/username/projects/myproject/packages/b/src/bar/foo.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/a/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: 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 20c355e5790c2..3ada973ec5a08 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 @@ -206,7 +206,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/test.ts (computed .d.ts) /user/username/projects/myproject/packages/b/src/bar/foo.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/a/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: 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 3c508b5b66859..788cd166ade0d 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 @@ -66,7 +66,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar/foo.ts (used version) /user/username/projects/myproject/packages/a/src/test.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/a/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: 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 218f64441563f..62d2677492f86 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 @@ -66,7 +66,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar/foo.ts (used version) /user/username/projects/myproject/packages/a/src/test.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/a/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: 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 03bed55511eb8..4d6a7399fd7ad 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 @@ -66,7 +66,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar/foo.ts (used version) /user/username/projects/myproject/packages/a/src/test.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/packages/a/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/packages/b/tsconfig.json: 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 4a018192f0299..2d67e312c4d74 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 @@ -342,7 +342,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/demo/core/utilities.ts (computed .d.ts) /user/username/projects/demo/animals/dog.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/demo/animals/tsconfig.json: {"pollingInterval":250} /user/username/projects/demo/core/tsconfig.json: diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project.js index ce537890102b6..79b8ad44e3122 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project.js @@ -134,7 +134,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/demo/core/utilities.ts (used version) /user/username/projects/demo/animals/dog.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/demo/animals/tsconfig.json: {"pollingInterval":250} /user/username/projects/demo/core/tsconfig.json: diff --git a/tests/baselines/reference/tscWatch/watchApi/extraFileExtensions-are-supported.js b/tests/baselines/reference/tscWatch/watchApi/extraFileExtensions-are-supported.js index a4b9c42355954..8b890f57d2707 100644 --- a/tests/baselines/reference/tscWatch/watchApi/extraFileExtensions-are-supported.js +++ b/tests/baselines/reference/tscWatch/watchApi/extraFileExtensions-are-supported.js @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (used version) /user/username/projects/myproject/other.vue (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: @@ -107,7 +107,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/other2.vue (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: 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 5fa7239ee022b..1b56ebd1b0342 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (used version) /user/username/projects/myproject/other.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: @@ -146,7 +146,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: @@ -262,7 +262,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: @@ -352,7 +352,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: @@ -455,7 +455,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: 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 b42fd00d5a083..ee7fa4917a8cd 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (used version) /user/username/projects/myproject/other.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: @@ -153,7 +153,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: @@ -276,7 +276,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: @@ -373,7 +373,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: @@ -483,7 +483,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: 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 a97602bcff8a4..c516242b135fa 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 @@ -54,7 +54,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (used version) /user/username/projects/myproject/other.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: @@ -179,7 +179,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: @@ -298,7 +298,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: 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 89e182492cd6e..b7617c5d05134 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 @@ -54,7 +54,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (used version) /user/username/projects/myproject/other.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: @@ -186,7 +186,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: @@ -312,7 +312,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: diff --git a/tests/baselines/reference/tscWatch/watchApi/semantic-builder-emitOnlyDts.js b/tests/baselines/reference/tscWatch/watchApi/semantic-builder-emitOnlyDts.js index 9abb409ec55fb..adf78caeaf444 100644 --- a/tests/baselines/reference/tscWatch/watchApi/semantic-builder-emitOnlyDts.js +++ b/tests/baselines/reference/tscWatch/watchApi/semantic-builder-emitOnlyDts.js @@ -54,7 +54,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (used version) /user/username/projects/myproject/other.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: @@ -172,7 +172,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: 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 496c8c644e80a..08db622ba3e71 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (used version) /user/username/projects/myproject/other.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: @@ -100,7 +100,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: 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 557185dc0adef..fa69cb00aac9f 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 @@ -59,7 +59,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/settings.json (used version) /user/username/projects/myproject/index.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/index.ts: 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 52be33e62bddf..17cf654f0ff50 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 @@ -58,7 +58,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/index.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/index.ts: 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 8a7bbe5c5e734..e51b7714a78ac 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 @@ -76,7 +76,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project1/class1.d.ts (used version) /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: @@ -206,7 +206,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: @@ -284,7 +284,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project1/class1.d.ts (used version) /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: @@ -382,7 +382,7 @@ Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detec Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Wild card directory of referenced project -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: @@ -463,7 +463,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project1/class1.d.ts (used version) /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: @@ -583,7 +583,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project1/class1.d.ts (used version) /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: 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 102d7cb8eb459..62b4271f928e1 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 @@ -76,7 +76,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project1/class1.ts (used version) /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: @@ -205,7 +205,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project1/class1.ts (computed .d.ts) /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: @@ -303,7 +303,7 @@ Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detec Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Wild card directory of referenced project -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: @@ -347,7 +347,7 @@ Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detec Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Wild card directory of referenced project -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/projects/project1/tsconfig.json: 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 eae59a415a779..a8f7770438708 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 @@ -43,7 +43,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/main.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: @@ -95,7 +95,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/bar.ts (computed .d.ts) /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/main.ts: 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 925286d4f58e1..4ea2056f70c41 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 @@ -63,7 +63,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.d.ts (used version) /user/username/projects/myproject/main.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} @@ -163,7 +163,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.d.ts (used version) /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} @@ -247,7 +247,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.d.ts (used version) /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} 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 28c7796be2969..1185c4b2edc7e 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 @@ -59,7 +59,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.ts (used version) /user/username/projects/myproject/main.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} @@ -138,7 +138,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.ts (computed .d.ts) /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} @@ -205,7 +205,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.ts (computed .d.ts) /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} 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 101268831afd6..59e69eb24775d 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 @@ -63,7 +63,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.d.ts (used version) /user/username/projects/myproject/main.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} @@ -153,7 +153,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.d.ts (used version) /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} @@ -227,7 +227,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.d.ts (used version) /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} 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 29c6f2b2aa89b..1f5debc5a634e 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 @@ -59,7 +59,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.ts (used version) /user/username/projects/myproject/main.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} @@ -137,7 +137,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.ts (computed .d.ts) /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} @@ -198,7 +198,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.ts (computed .d.ts) /user/username/projects/myproject/main.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} 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 dc34a4001ec17..3361429420273 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 @@ -43,7 +43,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/username/project/src/file1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/username/project/src/file1.ts: @@ -90,7 +90,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/username/project/src/file2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/lib/lib.d.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 6c469f6459148..16aa53421a3f9 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 @@ -43,7 +43,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/username/project/src/file1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/username/project/src/file1.ts: @@ -96,7 +96,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/username/project/src/file2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/lib/lib.d.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 cf3167d2919cf..e4f400348548a 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 @@ -43,7 +43,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/username/project/src/file1.ts (used version) -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/username/project/src/file1.ts: @@ -96,7 +96,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/username/project/src/file2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/lib/lib.d.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 ceb02a7c33be0..79a685871b561 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 @@ -85,7 +85,7 @@ Shape signatures in builder refreshed for:: /home/user/projects/myproject/node_modules/reala/index.d.ts (used version) /home/user/projects/myproject/src/file.ts (used version) -WatchedFiles:: +PolledWatches:: /home/user/projects/myproject/tsconfig.json: {"pollingInterval":250} /home/user/projects/myproject/src/file.ts: 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 0b51745370b48..ce3da302d0984 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file2.ts (used version) /user/username/projects/myproject/src/file1.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: @@ -92,7 +92,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: @@ -150,7 +150,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: @@ -208,7 +208,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/renamed.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: 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 94d82de3cae06..901fcd6fd3df8 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/file2/index.d.ts (used version) /user/username/projects/myproject/src/file1.ts (computed .d.ts during emit) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: @@ -93,7 +93,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: @@ -131,7 +131,7 @@ export const y = 10; Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: @@ -187,7 +187,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file3.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: @@ -235,7 +235,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: @@ -272,7 +272,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: 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 5accfb5389ee1..49b99d647e14d 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/file2/index.d.ts (used version) /user/username/projects/myproject/src/file1.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: @@ -87,7 +87,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: @@ -145,7 +145,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: @@ -197,7 +197,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: @@ -226,7 +226,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: @@ -255,7 +255,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: @@ -287,7 +287,7 @@ export const x = 10; Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: @@ -316,7 +316,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: @@ -347,7 +347,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: @@ -400,7 +400,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/file2/index.d.ts (used version) /user/username/projects/myproject/src/file1.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/file1.ts: diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/setting-default-as-fixed-chunk-size-watch-file-works.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/setting-default-as-fixed-chunk-size-watch-file-works.js index 4558b15e8b543..ad32a6849eeab 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/setting-default-as-fixed-chunk-size-watch-file-works.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/setting-default-as-fixed-chunk-size-watch-file-works.js @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) /a/b/commonfile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/node_modules/@types: {"pollingInterval":500} @@ -79,7 +79,7 @@ var zz30 = 100; Output:: -WatchedFiles:: +PolledWatches:: /a/b/node_modules/@types: {"pollingInterval":500} @@ -121,7 +121,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (computed .d.ts) /a/b/commonfile2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/node_modules/@types: {"pollingInterval":500} diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/using-dynamic-priority-polling.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/using-dynamic-priority-polling.js index 1f6ca1f6db39d..a951b5c646263 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/using-dynamic-priority-polling.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/using-dynamic-priority-polling.js @@ -40,7 +40,7 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/username/project/typescript.ts (used version) -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -59,7 +59,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -77,7 +77,7 @@ var zz30 = 100; Output:: -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -112,7 +112,7 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/username/project/typescript.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: FsWatches:: @@ -131,7 +131,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: FsWatches:: diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/using-fixed-chunk-size-polling.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/using-fixed-chunk-size-polling.js index b725245676b0f..4ba506d930a7e 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/using-fixed-chunk-size-polling.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchFile/using-fixed-chunk-size-polling.js @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) /a/b/commonfile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/node_modules/@types: {"pollingInterval":500} @@ -76,7 +76,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /a/b/node_modules/@types: {"pollingInterval":500} @@ -98,7 +98,7 @@ var zz30 = 100; Output:: -WatchedFiles:: +PolledWatches:: /a/b/node_modules/@types: {"pollingInterval":500} @@ -140,7 +140,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (computed .d.ts) /a/b/commonfile2.ts (computed .d.ts) -WatchedFiles:: +PolledWatches:: /a/b/node_modules/@types: {"pollingInterval":500} @@ -164,7 +164,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /a/b/node_modules/@types: {"pollingInterval":500} 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 cc53fb9c04273..d0402ced95ce7 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 @@ -78,7 +78,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/bar/index.d.ts (used version) /user/username/projects/myproject/src/main.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: @@ -115,7 +115,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: 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 16410a745160a..e45507b9679cc 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 @@ -78,7 +78,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/bar/index.d.ts (used version) /user/username/projects/myproject/src/main.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: @@ -129,7 +129,7 @@ Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myprojec sysLog:: Elapsed:: *ms:: onTimerToUpdateChildWatches:: 0 undefined -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: @@ -167,7 +167,7 @@ export function temp(): string; Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: 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 0d044cfc794ab..2f788defbcced 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 @@ -61,7 +61,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/bar/index.d.ts (used version) /user/username/projects/myproject/src/main.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: @@ -103,7 +103,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: @@ -141,7 +141,7 @@ export function temp(): string; Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: 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 4f2c1dda02bc0..8dc6cc14d0986 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option.js @@ -61,7 +61,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/bar/index.d.ts (used version) /user/username/projects/myproject/src/main.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: @@ -98,7 +98,7 @@ Input:: Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: 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 569e9bf474c34..66b4ae952fef8 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 @@ -80,7 +80,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/bar/index.d.ts (used version) /user/username/projects/myproject/src/main.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: @@ -119,7 +119,7 @@ export function fooBar(): string; Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: 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 91da21807663e..9d7a4b166bc71 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option.js @@ -61,7 +61,7 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/bar/index.d.ts (used version) /user/username/projects/myproject/src/main.ts (used version) -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: @@ -100,7 +100,7 @@ export function fooBar(): string; Output:: -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/main.ts: 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 d815fe6eb5ebd..fc498f65421e5 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-fallbackPolling-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-fallbackPolling-option.js @@ -50,7 +50,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) /a/b/commonfile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: 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 f1ac76351b699..604a02b80c5fb 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchDirectory-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchDirectory-option.js @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) /a/b/commonfile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile1.ts: 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 8b60758d4dc65..d03484ff65816 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 @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) /a/b/commonfile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/node_modules/@types: {"pollingInterval":500} 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 a49ff2de930f4..170e83992a69b 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchFile-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchFile-option.js @@ -49,7 +49,7 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) /a/b/commonfile2.ts (used version) -WatchedFiles:: +PolledWatches:: /a/b/node_modules/@types: {"pollingInterval":500} 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 78452a5ddb592..c8610d515f835 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 @@ -39,7 +39,7 @@ Project '/user/username/projects/myproject/project.csproj' (External) Open files: FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined Projects: /user/username/projects/myproject/project.csproj -WatchedFiles:: +PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":250} 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 791ee1a279cdc..624b26d0178ae 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options.js @@ -39,7 +39,7 @@ Project '/user/username/projects/myproject/project.csproj' (External) Open files: FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined Projects: /user/username/projects/myproject/project.csproj -WatchedFiles:: +PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":250} diff --git a/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js b/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js index f75d983f0cbc8..694df888bc381 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js @@ -43,7 +43,7 @@ Project 'c:/project/tsconfig.json' (Configured) Open files: FileName: c:/project/file1.ts ProjectRootPath: undefined Projects: c:/project/tsconfig.json -WatchedFiles:: +PolledWatches:: c:/project/tsconfig.json: {"pollingInterval":250} c:/project/file2.ts: 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 f75d983f0cbc8..694df888bc381 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 @@ -43,7 +43,7 @@ Project 'c:/project/tsconfig.json' (Configured) Open files: FileName: c:/project/file1.ts ProjectRootPath: undefined Projects: c:/project/tsconfig.json -WatchedFiles:: +PolledWatches:: c:/project/tsconfig.json: {"pollingInterval":250} c:/project/file2.ts: 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 75260189c15bb..628ebcefb5913 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-root.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-root.js @@ -45,7 +45,7 @@ Project 'c:/myfolder/allproject/project/tsconfig.json' (Configured) Open files: FileName: c:/myfolder/allproject/project/file1.ts ProjectRootPath: undefined Projects: c:/myfolder/allproject/project/tsconfig.json -WatchedFiles:: +PolledWatches:: c:/myfolder/allproject/project/tsconfig.json: {"pollingInterval":250} c:/myfolder/allproject/project/file2.ts: 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 75260189c15bb..628ebcefb5913 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 @@ -45,7 +45,7 @@ Project 'c:/myfolder/allproject/project/tsconfig.json' (Configured) Open files: FileName: c:/myfolder/allproject/project/file1.ts ProjectRootPath: undefined Projects: c:/myfolder/allproject/project/tsconfig.json -WatchedFiles:: +PolledWatches:: c:/myfolder/allproject/project/tsconfig.json: {"pollingInterval":250} c:/myfolder/allproject/project/file2.ts: 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 f2cc66c64357f..32815b880a611 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 @@ -40,7 +40,7 @@ Project '/dev/null/inferredProject1*' (Inferred) Open files: FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject Projects: /dev/null/inferredProject1* -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/jsconfig.json: 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 3834bae44eb1c..b0a391964c921 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options.js @@ -40,7 +40,7 @@ Project '/dev/null/inferredProject1*' (Inferred) Open files: FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject Projects: /dev/null/inferredProject1* -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/src/tsconfig.json: {"pollingInterval":250} /user/username/projects/myproject/src/jsconfig.json: 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 a498c6ed53e81..a9e3c90143a93 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 @@ -30,7 +30,7 @@ Project '/dev/null/inferredProject1*' (Inferred) Open files: FileName: /User/userName/Projects/i/foo.ts ProjectRootPath: /User/userName/Projects/i Projects: /dev/null/inferredProject1* -WatchedFiles:: +PolledWatches:: /user/username/projects/i/tsconfig.json: {"pollingInterval":250} /user/username/projects/i/jsconfig.json: 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 7daad74a39316..01401000fe02c 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 @@ -30,7 +30,7 @@ Project '/dev/null/inferredProject1*' (Inferred) Open files: FileName: /User/userName/Projects/I/foo.ts ProjectRootPath: /User/userName/Projects/I Projects: /dev/null/inferredProject1* -WatchedFiles:: +PolledWatches:: /user/username/projects/i/tsconfig.json: {"pollingInterval":250} /user/username/projects/i/jsconfig.json: 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 ccc038ce0d793..cf4b40d7f15d7 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 @@ -30,7 +30,7 @@ Project '/dev/null/inferredProject1*' (Inferred) Open files: FileName: /User/userName/Projects/İ/foo.ts ProjectRootPath: /User/userName/Projects/İ Projects: /dev/null/inferredProject1* -WatchedFiles:: +PolledWatches:: /user/username/projects/İ/tsconfig.json: {"pollingInterval":250} /user/username/projects/İ/jsconfig.json: 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 f625139ccc4c2..e2ee0529cd987 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 @@ -47,7 +47,7 @@ Project '/a/username/project/tsconfig.json' (Configured) Open files: FileName: /a/username/project/src/index.ts ProjectRootPath: undefined Projects: /a/username/project/tsconfig.json -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/username/project/src/file1.ts: @@ -67,7 +67,7 @@ FsWatches:: FsWatchesRecursive:: -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/username/project/src/file1.ts: @@ -87,7 +87,7 @@ FsWatches:: FsWatchesRecursive:: -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/username/project/src/file1.ts: @@ -107,7 +107,7 @@ FsWatches:: FsWatchesRecursive:: -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/username/project/src/file1.ts: @@ -127,7 +127,7 @@ FsWatches:: FsWatchesRecursive:: -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/username/project/src/file1.ts: @@ -147,7 +147,7 @@ FsWatches:: FsWatchesRecursive:: -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/username/project/src/file1.ts: @@ -167,7 +167,7 @@ FsWatches:: FsWatchesRecursive:: -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/username/project/src/file1.ts: 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 07e857407bbd2..1ebf273559ff5 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 @@ -52,7 +52,7 @@ Open files: FileName: /a/username/project/src/index.ts ProjectRootPath: undefined Projects: /a/username/project/tsconfig.json Completion Entries:: ["file1"] -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/username/project/src/file1.ts: @@ -95,7 +95,7 @@ Project '/a/username/project/tsconfig.json' (Configured) ----------------------------------------------- Completion Entries:: ["file1","file2"] -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/username/project/src/file1.ts: 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 d4ca7f9f86ea2..afdbb347d7a21 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 @@ -52,7 +52,7 @@ Open files: FileName: /a/username/project/src/index.ts ProjectRootPath: undefined Projects: /a/username/project/tsconfig.json Completion Entries:: ["file1"] -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/username/project/src/file1.ts: @@ -118,7 +118,7 @@ Open files: FileName: /a/username/project/src/index.ts ProjectRootPath: undefined Projects: /a/username/project/tsconfig.json Completion Entries:: ["file1","file2"] -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/username/project/src/file1.ts: 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 2cb34b825fc89..2cf76ad15e781 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 @@ -52,7 +52,7 @@ Open files: FileName: /a/username/project/src/index.ts ProjectRootPath: undefined Projects: /a/username/project/tsconfig.json Completion Entries:: ["file1"] -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/username/project: @@ -102,7 +102,7 @@ Project '/a/username/project/tsconfig.json' (Configured) ----------------------------------------------- Completion Entries:: ["file1","file2"] -WatchedFiles:: +PolledWatches:: /a/username/project/tsconfig.json: {"pollingInterval":250} /a/username/project: 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 2a6d198172573..ec9336aa92885 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 @@ -29,7 +29,7 @@ Project '/dev/null/inferredProject1*' (Inferred) Open files: FileName: c:/myprojects/project/x.js ProjectRootPath: undefined Projects: /dev/null/inferredProject1* -WatchedFiles:: +PolledWatches:: c:/myprojects/project/tsconfig.json: {"pollingInterval":250} c:/myprojects/project/jsconfig.json: @@ -74,7 +74,7 @@ Project '/dev/null/inferredProject1*' (Inferred) Open files: FileName: //vda1cs4850/myprojects/project/x.js ProjectRootPath: undefined Projects: /dev/null/inferredProject1* -WatchedFiles:: +PolledWatches:: //vda1cs4850/myprojects/project/tsconfig.json: {"pollingInterval":250} //vda1cs4850/myprojects/project/jsconfig.json: @@ -119,7 +119,7 @@ Project '/dev/null/inferredProject1*' (Inferred) Open files: FileName: //vda1cs4850/c$/myprojects/project/x.js ProjectRootPath: undefined Projects: /dev/null/inferredProject1* -WatchedFiles:: +PolledWatches:: //vda1cs4850/c$/myprojects/project/tsconfig.json: {"pollingInterval":250} //vda1cs4850/c$/myprojects/project/jsconfig.json: @@ -164,7 +164,7 @@ Project '/dev/null/inferredProject1*' (Inferred) Open files: FileName: c:/users/username/myprojects/project/x.js ProjectRootPath: undefined Projects: /dev/null/inferredProject1* -WatchedFiles:: +PolledWatches:: c:/users/username/myprojects/project/tsconfig.json: {"pollingInterval":250} c:/users/username/myprojects/project/jsconfig.json: @@ -209,7 +209,7 @@ Project '/dev/null/inferredProject1*' (Inferred) Open files: FileName: //vda1cs4850/c$/users/username/myprojects/project/x.js ProjectRootPath: undefined Projects: /dev/null/inferredProject1* -WatchedFiles:: +PolledWatches:: //vda1cs4850/c$/users/username/myprojects/project/tsconfig.json: {"pollingInterval":250} //vda1cs4850/c$/users/username/myprojects/project/jsconfig.json: diff --git a/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-can-create-multiple-watchers-per-file.js b/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-can-create-multiple-watchers-per-file.js index 81126ed642ef2..f272617ba5112 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-can-create-multiple-watchers-per-file.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-can-create-multiple-watchers-per-file.js @@ -52,7 +52,7 @@ Open files: FileName: /user/username/projects/myproject/index.ts ProjectRootPath: undefined Projects: /user/username/projects/myproject/tsconfig.json response:{"responseRequired":false} -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} {"pollingInterval":500} 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 e43b2d59884d6..d62d018331fdd 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 @@ -52,7 +52,7 @@ Open files: FileName: /user/username/projects/myproject/index.ts ProjectRootPath: undefined Projects: /user/username/projects/myproject/tsconfig.json response:{"responseRequired":false} -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /a/lib/lib.d.ts: 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 6a140b32f5daa..139cb63dae034 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 @@ -55,7 +55,7 @@ Project '/user/username/projects/myproject/tsconfig.json' (Configured) Open files: FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined Projects: /user/username/projects/myproject/tsconfig.json -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /a/lib/lib.d.ts: 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 334e0e03adeb7..f7e24cd1459be 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 @@ -55,7 +55,7 @@ Project '/user/username/projects/myproject/tsconfig.json' (Configured) Open files: FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined Projects: /user/username/projects/myproject/tsconfig.json -WatchedFiles:: +PolledWatches:: /user/username/projects/myproject/tsconfig.json: {"pollingInterval":250} /a/lib/lib.d.ts: 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 690c88a2f24b4..cb3c25304bfed 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 @@ -50,7 +50,7 @@ Open files: FileName: /a/b/commonFile1.ts ProjectRootPath: /a/b Projects: /a/b/tsconfig.json response:{"responseRequired":false} -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b: 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 5e23e449e40fe..dab46d1009b6d 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 @@ -53,7 +53,7 @@ Open files: FileName: /a/b/commonFile1.ts ProjectRootPath: /a/b Projects: /a/b/tsconfig.json response:{"responseRequired":false} -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b: 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 3e518106e3ed4..5e79c6cc07c10 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 @@ -50,7 +50,7 @@ Open files: FileName: /a/b/commonFile1.ts ProjectRootPath: /a/b Projects: /a/b/tsconfig.json response:{"responseRequired":false} -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile2.ts: 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 9c76c980067cf..5e12f7c597a05 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 @@ -50,7 +50,7 @@ Open files: FileName: /a/b/commonFile1.ts ProjectRootPath: /a/b Projects: /a/b/tsconfig.json response:{"responseRequired":false} -WatchedFiles:: +PolledWatches:: /a/b/tsconfig.json: {"pollingInterval":250} /a/b/commonfile2.ts: 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 8f148532cb579..892e54e319e9d 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 @@ -50,7 +50,7 @@ Open files: FileName: /a/b/commonFile1.ts ProjectRootPath: /a/b Projects: /a/b/tsconfig.json response:{"responseRequired":false} -WatchedFiles:: +PolledWatches:: /a/b/node_modules/@types: {"pollingInterval":500} 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 e779a749d50aa..11a7a75cbe100 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 @@ -50,7 +50,7 @@ Open files: FileName: /a/b/commonFile1.ts ProjectRootPath: /a/b Projects: /a/b/tsconfig.json response:{"responseRequired":false} -WatchedFiles:: +PolledWatches:: /a/b/commonfile2.ts: {"pollingInterval":250} /a/lib/lib.d.ts: From 10a7b4e252f2d6554895a923c48435d7211d30a7 Mon Sep 17 00:00:00 2001 From: Sheetal Nandi Date: Mon, 15 Aug 2022 14:48:45 -0700 Subject: [PATCH 4/8] Use fs events as default watching --- src/compiler/sys.ts | 2 +- src/tsserver/nodeServer.ts | 14 - .../reports-syntax-errors-in-config-file.js | 50 +- .../demo/updates-with-bad-reference.js | 56 +- .../demo/updates-with-circular-reference.js | 48 +- ...for-changes-to-package-json-main-fields.js | 54 +- ...t-correctly-with-cts-and-mts-extensions.js | 170 +- ...se-different-module-resolution-settings.js | 48 +- ...n-no-files-are-emitted-with-incremental.js | 30 +- ...when-watching-when-no-files-are-emitted.js | 30 +- ...mit-any-files-on-error-with-incremental.js | 84 +- .../does-not-emit-any-files-on-error.js | 84 +- .../creates-solution-in-watch-mode.js | 18 +- .../incremental-updates-in-verbose-mode.js | 54 +- .../when-file-with-no-error-changes.js | 30 +- ...ing-errors-only-changed-file-is-emitted.js | 30 +- .../when-file-with-no-error-changes.js | 20 +- ...ixing-error-files-all-files-are-emitted.js | 20 +- .../when-preserveWatchOutput-is-not-used.js | 54 +- ...veWatchOutput-is-passed-on-command-line.js | 54 +- ...e-of-program-emit-with-outDir-specified.js | 44 +- ...r-recompilation-because-of-program-emit.js | 44 +- .../programUpdates/tsbuildinfo-has-error.js | 8 +- ...-references-watches-only-those-projects.js | 14 +- ...tches-config-files-that-are-not-present.js | 60 +- ...e-down-stream-project-and-then-fixes-it.js | 36 +- ...ncing-project-even-for-non-local-change.js | 60 +- ...le-is-added,-and-its-subsequent-updates.js | 98 +- ...hanges-and-reports-found-errors-message.js | 126 +- ...not-start-build-of-referencing-projects.js | 36 +- ...le-is-added,-and-its-subsequent-updates.js | 98 +- ...hanges-and-reports-found-errors-message.js | 126 +- ...not-start-build-of-referencing-projects.js | 36 +- ...project-with-extended-config-is-removed.js | 34 +- ...hen-noUnusedParameters-changes-to-false.js | 16 +- .../works-with-extended-source-files.js | 120 +- ...hen-there-are-23-projects-in-a-solution.js | 2160 ++++++++--------- ...when-there-are-3-projects-in-a-solution.js | 108 +- ...when-there-are-5-projects-in-a-solution.js | 156 +- ...when-there-are-8-projects-in-a-solution.js | 456 ++-- .../publicApi/with-custom-transformers.js | 28 +- .../reexport/Reports-errors-correctly.js | 60 +- ...e-projects-with-single-watcher-per-file.js | 96 +- .../same-file-in-multiple-projects.js | 96 +- .../createWatchOfConfigFile.js | 20 +- ...Result-on-WatchCompilerHostOfConfigFile.js | 20 +- .../consoleClearing/with---diagnostics.js | 16 +- .../with---extendedDiagnostics.js | 16 +- .../with---preserveWatchOutput.js | 16 +- ...---diagnostics-or---extendedDiagnostics.js | 16 +- ...ms-correctly-in-incremental-compilation.js | 24 +- ...s-deleted-and-created-as-part-of-change.js | 24 +- ...ndles-new-lines-carriageReturn-lineFeed.js | 16 +- .../handles-new-lines-lineFeed.js | 16 +- .../should-emit-specified-file.js | 54 +- ...elf-if-'--isolatedModules'-is-specified.js | 44 +- ...-if-'--out'-or-'--outFile'-is-specified.js | 44 +- ...should-be-up-to-date-with-deleted-files.js | 42 +- ...-be-up-to-date-with-newly-created-files.js | 46 +- ...-to-date-with-the-reference-map-changes.js | 132 +- ...les-referencing-it-if-its-shape-changed.js | 66 +- ...should-detect-changes-in-non-root-files.js | 48 +- .../should-detect-non-existing-code-file.js | 44 +- .../should-detect-removed-code-file.js | 30 +- ...ll-files-if-a-global-file-changed-shape.js | 44 +- ...ould-return-cascaded-affected-file-list.js | 96 +- ...fine-for-files-with-circular-references.js | 32 +- .../config-does-not-have-out-or-outFile.js | 48 +- .../config-has-out.js | 48 +- .../config-has-outFile.js | 48 +- ...ltiple-declaration-files-in-the-program.js | 20 +- ...ltiple-declaration-files-in-the-program.js | 20 +- ...-recursive-directory-watcher-is-invoked.js | 32 +- ...rrors-for-.d.ts-change-with-incremental.js | 80 +- .../errors-for-.d.ts-change.js | 80 +- .../errors-for-.ts-change-with-incremental.js | 72 +- .../errors-for-.ts-change.js | 72 +- ...el-import-that-changes-with-incremental.js | 88 +- ...g-a-deep-multilevel-import-that-changes.js | 88 +- .../export-with-incremental.js | 96 +- .../no-circular-import/export.js | 96 +- .../exports-with-incremental.js | 104 +- .../yes-circular-import/exports.js | 104 +- .../with-noEmitOnError-with-incremental.js | 126 +- .../with-noEmitOnError.js | 126 +- ...rrors-for-.d.ts-change-with-incremental.js | 80 +- .../errors-for-.d.ts-change.js | 80 +- .../errors-for-.ts-change-with-incremental.js | 72 +- .../errors-for-.ts-change.js | 72 +- ...el-import-that-changes-with-incremental.js | 88 +- ...g-a-deep-multilevel-import-that-changes.js | 88 +- .../export-with-incremental.js | 96 +- .../no-circular-import/export.js | 96 +- .../exports-with-incremental.js | 104 +- .../yes-circular-import/exports.js | 104 +- .../with-noEmitOnError-with-incremental.js | 126 +- .../with-noEmitOnError.js | 126 +- ...rrors-for-.d.ts-change-with-incremental.js | 80 +- .../errors-for-.d.ts-change.js | 80 +- .../errors-for-.ts-change-with-incremental.js | 72 +- .../errors-for-.ts-change.js | 72 +- ...el-import-that-changes-with-incremental.js | 88 +- ...g-a-deep-multilevel-import-that-changes.js | 88 +- .../export-with-incremental.js | 96 +- .../no-circular-import/export.js | 96 +- .../exports-with-incremental.js | 104 +- .../yes-circular-import/exports.js | 104 +- .../with-noEmitOnError-with-incremental.js | 126 +- .../default/with-noEmitOnError.js | 126 +- ...rrors-for-.d.ts-change-with-incremental.js | 80 +- .../errors-for-.d.ts-change.js | 80 +- .../errors-for-.ts-change-with-incremental.js | 72 +- .../errors-for-.ts-change.js | 72 +- ...el-import-that-changes-with-incremental.js | 88 +- ...g-a-deep-multilevel-import-that-changes.js | 88 +- .../export-with-incremental.js | 96 +- .../no-circular-import/export.js | 96 +- .../exports-with-incremental.js | 104 +- .../yes-circular-import/exports.js | 104 +- .../with-noEmitOnError-with-incremental.js | 126 +- .../defaultAndD/with-noEmitOnError.js | 126 +- ...rrors-for-.d.ts-change-with-incremental.js | 80 +- .../errors-for-.d.ts-change.js | 80 +- .../errors-for-.ts-change-with-incremental.js | 72 +- .../errors-for-.ts-change.js | 72 +- ...el-import-that-changes-with-incremental.js | 88 +- ...g-a-deep-multilevel-import-that-changes.js | 88 +- .../export-with-incremental.js | 96 +- .../no-circular-import/export.js | 96 +- .../exports-with-incremental.js | 104 +- .../yes-circular-import/exports.js | 104 +- .../with-noEmitOnError-with-incremental.js | 126 +- .../isolatedModules/with-noEmitOnError.js | 126 +- ...rrors-for-.d.ts-change-with-incremental.js | 80 +- .../errors-for-.d.ts-change.js | 80 +- .../errors-for-.ts-change-with-incremental.js | 72 +- .../errors-for-.ts-change.js | 72 +- ...el-import-that-changes-with-incremental.js | 88 +- ...g-a-deep-multilevel-import-that-changes.js | 88 +- .../export-with-incremental.js | 96 +- .../no-circular-import/export.js | 96 +- .../exports-with-incremental.js | 104 +- .../yes-circular-import/exports.js | 104 +- .../with-noEmitOnError-with-incremental.js | 126 +- .../isolatedModulesAndD/with-noEmitOnError.js | 126 +- .../jsxImportSource-option-changed.js | 18 +- ...n-Windows-style-drive-root-is-lowercase.js | 32 +- ...n-Windows-style-drive-root-is-uppercase.js | 32 +- ...ry-symlink-target-and-import-match-disk.js | 36 +- ...le-symlink-target-and-import-match-disk.js | 36 +- ...nging-module-name-with-different-casing.js | 32 +- ...target-matches-disk-but-import-does-not.js | 36 +- ...target-matches-disk-but-import-does-not.js | 36 +- ...link-target,-and-disk-are-all-different.js | 40 +- ...link-target,-and-disk-are-all-different.js | 40 +- ...link-target-agree-but-do-not-match-disk.js | 36 +- ...link-target-agree-but-do-not-match-disk.js | 36 +- ...k-but-directory-symlink-target-does-not.js | 36 +- ...s-disk-but-file-symlink-target-does-not.js | 36 +- ...ative-information-file-location-changes.js | 36 +- ...hen-renaming-file-with-different-casing.js | 32 +- .../editing-module-augmentation-watch.js | 36 +- ...portHelpers-backing-types-removed-watch.js | 30 +- ...remental-with-circular-references-watch.js | 40 +- ...xImportSource-backing-types-added-watch.js | 30 +- ...mportSource-backing-types-removed-watch.js | 30 +- .../jsxImportSource-option-changed-watch.js | 36 +- .../own-file-emit-with-errors-watch.js | 32 +- .../own-file-emit-without-errors-watch.js | 32 +- .../module-compilation/with---out-watch.js | 16 +- .../own-file-emit-with-errors-watch.js | 32 +- ...-parameters-that-are-not-relative-watch.js | 32 +- .../without-commandline-options-watch.js | 32 +- .../incremental/tsbuildinfo-has-error.js | 12 +- ...lobal-declaration-file-is-deleted-watch.js | 28 +- .../tscWatch/incremental/with---out-watch.js | 16 +- .../diagnostics-from-cache.js | 16 +- ...en-package-json-with-type-module-exists.js | 112 +- .../package-json-file-is-edited.js | 112 +- ...for-changes-to-package-json-main-fields.js | 68 +- .../esm-mode-file-is-edited.js | 32 +- ...nerated-when-the-config-file-has-errors.js | 12 +- ...configFile-contents-when-options-change.js | 24 +- ...rs-document-is-not-contained-in-project.js | 12 +- ...rts-errors-when-the-config-file-changes.js | 36 +- ...nostics-when-'--noUnusedLabels'-changes.js | 30 +- ...-a-configured-program-without-file-list.js | 28 +- ...hould-remove-the-module-not-found-error.js | 18 +- ...has-changed-(new-file-in-list-of-files).js | 28 +- ...ot-files-has-changed-(new-file-on-disk).js | 28 +- ...-root-files-has-changed-through-include.js | 28 +- ...config-file-name-with-difference-casing.js | 12 +- ...-when-set-of-root-files-was-not-changed.js | 32 +- .../programUpdates/change-module-to-none.js | 24 +- ...iles-are-reflected-in-project-structure.js | 22 +- .../config-file-includes-the-file.js | 18 +- .../programUpdates/config-file-is-deleted.js | 32 +- ...s-changes-in-lib-section-of-config-file.js | 28 +- ...keys-differ-only-in-directory-seperator.js | 52 +- ...te-configured-project-without-file-list.js | 16 +- .../create-watch-without-config-file.js | 10 +- ...eleted-files-affect-project-structure-2.js | 22 +- .../deleted-files-affect-project-structure.js | 20 +- .../extended-source-files-are-watched.js | 92 +- .../file-in-files-is-deleted.js | 30 +- ...iles-explicitly-excluded-in-config-file.js | 16 +- .../handle-recreated-files-correctly.js | 60 +- ...se-they-were-added-with-tripleSlashRefs.js | 20 +- ...esnt-have-errors,-they-are-not-reported.js | 12 +- ...ndle-@types-if-input-file-list-is-empty.js | 4 +- ...e-tolerated-without-crashing-the-server.js | 4 +- ...tore-the-states-for-configured-projects.js | 48 +- ...estore-the-states-for-inferred-projects.js | 28 +- ...rors-correctly-with-file-not-in-rootDir.js | 32 +- ...s-errors-correctly-with-isolatedModules.js | 32 +- ...non-existing-directories-in-config-file.js | 12 +- ...ting-files-specified-in-the-config-file.js | 14 +- .../declarationDir-is-specified.js | 64 +- ...-outDir-and-declarationDir-is-specified.js | 64 +- .../when-outDir-is-specified.js | 64 +- .../with-outFile.js | 64 +- ...e-is-specified-with-declaration-enabled.js | 64 +- .../without-outDir-or-outFile-is-specified.js | 64 +- ...odule-resolution-changes-in-config-file.js | 32 +- .../should-reflect-change-in-config-file.js | 44 +- ...should-support-files-without-extensions.js | 8 +- ...errors-and-still-try-to-build-a-project.js | 16 +- ...when-file-changes-from-global-to-module.js | 16 +- ...programs-are-not-affected-by-each-other.js | 28 +- ...-from-config-file-path-if-config-exists.js | 12 +- ...tes-diagnostics-and-emit-for-decorators.js | 36 +- ...it-when-useDefineForClassFields-changes.js | 20 +- .../updates-emit-on-jsx-option-change.js | 24 +- ...mit-when-importsNotUsedAsValues-changes.js | 64 +- ...on-emit-is-disabled-in-compiler-options.js | 80 +- .../with-default-options.js | 24 +- .../with-skipDefaultLibCheck.js | 24 +- .../with-skipLibCheck.js | 24 +- .../with-default-options.js | 24 +- .../with-skipDefaultLibCheck.js | 24 +- .../with-skipLibCheck.js | 24 +- ...when-ambient-modules-of-program-changes.js | 40 +- ...orceConsistentCasingInFileNames-changes.js | 24 +- ...s-errors-when-noErrorTruncation-changes.js | 24 +- ...es-errors-when-strictNullChecks-changes.js | 48 +- ...solution-when-resolveJsonModule-changes.js | 27 +- ...and-new-file-is-added-as-part-of-change.js | 24 +- .../when-creating-extensionless-file.js | 24 +- ...n-creating-new-file-in-symlinked-folder.js | 34 +- ...file-is-added-to-the-referenced-project.js | 136 +- ...ibCheck-and-skipDefaultLibCheck-changes.js | 112 +- ...-file-is-changed-but-its-content-havent.js | 32 +- .../on-sample-project.js | 112 +- ...-different-folders-with-no-files-clause.js | 292 +-- ...nsitive-references-in-different-folders.js | 292 +-- .../on-transitive-references.js | 234 +- ...roject-uses-different-module-resolution.js | 24 +- .../tscWatch/resolutionCache/caching-works.js | 38 +- .../watch-with-configFile.js | 32 +- .../watch-without-configFile.js | 20 +- .../loads-missing-files-from-disk.js | 18 +- ...module-goes-missing-and-then-comes-back.js | 28 +- ...are-global-and-installed-at-later-point.js | 40 +- .../with-modules-linked-to-sibling-folder.js | 24 +- ...cluded-file-with-ambient-module-changes.js | 24 +- ...-no-notification-from-fs-for-index-file.js | 72 +- ...le-resolution-changes-to-ambient-module.js | 20 +- ...der-that-already-contains-@types-folder.js | 18 +- ...rogram-with-files-from-external-library.js | 40 +- ...es-field-when-solution-is-already-built.js | 28 +- ...Symlinks-when-solution-is-already-built.js | 28 +- ...n-has-types-field-with-preserveSymlinks.js | 28 +- ...-package-when-solution-is-already-built.js | 28 +- ...Symlinks-when-solution-is-already-built.js | 28 +- ...th-scoped-package-with-preserveSymlinks.js | 28 +- ...son-has-types-field-with-scoped-package.js | 28 +- .../when-packageJson-has-types-field.js | 28 +- ...ubFolder-when-solution-is-already-built.js | 28 +- ...Symlinks-when-solution-is-already-built.js | 28 +- ...le-from-subFolder-with-preserveSymlinks.js | 28 +- ...-package-when-solution-is-already-built.js | 28 +- ...Symlinks-when-solution-is-already-built.js | 28 +- ...th-scoped-package-with-preserveSymlinks.js | 28 +- ...file-from-subFolder-with-scoped-package.js | 28 +- .../when-referencing-file-from-subFolder.js | 28 +- ...-project-when-solution-is-already-built.js | 30 +- .../with-simple-project.js | 30 +- .../extraFileExtensions-are-supported.js | 34 +- ...noEmit-with-composite-with-emit-builder.js | 80 +- ...it-with-composite-with-semantic-builder.js | 80 +- ...nError-with-composite-with-emit-builder.js | 48 +- ...or-with-composite-with-semantic-builder.js | 48 +- .../watchApi/semantic-builder-emitOnlyDts.js | 32 +- ...createSemanticDiagnosticsBuilderProgram.js | 32 +- ...n-works-when-returned-without-extension.js | 16 +- ...assed-down-to-the-watch-status-reporter.js | 12 +- ...ing-useSourceOfProjectReferenceRedirect.js | 136 +- ...-host-implementing-getParsedCommandLine.js | 92 +- ...-timesouts-on-host-program-gets-updated.js | 28 +- ...polling-when-renaming-file-in-subfolder.js | 20 +- ...rectory-when-renaming-file-in-subfolder.js | 24 +- ...tchFile-when-renaming-file-in-subfolder.js | 24 +- ...ymlinks-to-folders-in-recursive-folders.js | 16 +- ...hronous-watch-directory-renaming-a-file.js | 62 +- ...ory-with-outDir-and-declaration-enabled.js | 108 +- .../with-non-synchronous-watch-directory.js | 132 +- ...eDirectories-option-extendedDiagnostics.js | 28 +- ...-directory-watching-extendedDiagnostics.js | 60 +- ...ption-with-recursive-directory-watching.js | 60 +- .../with-excludeDirectories-option.js | 28 +- ...excludeFiles-option-extendedDiagnostics.js | 24 +- .../watchOptions/with-excludeFiles-option.js | 24 +- .../with-fallbackPolling-option.js | 6 +- .../with-watchDirectory-option.js | 16 +- .../loads-missing-files-from-disk.js | 2 +- ...-file-with-case-insensitive-file-system.js | 2 +- ...ig-file-with-case-sensitive-file-system.js | 2 +- .../tsconfig-for-the-file-does-not-exist.js | 6 + .../tsconfig-for-the-file-exists.js | 6 + ...onfig-file-in-a-folder-with-loose-files.js | 8 + .../dependency-dts-created.js | 4 + .../dependency-dts-created.js | 4 + .../dependency-dts-created.js | 4 + ...dts-changes-with-timeout-before-request.js | 4 +- .../dependency-dts-changes.js | 4 +- .../dependency-dts-created.js | 4 + .../dependency-dts-deleted.js | 4 +- .../dependency-dts-created.js | 4 + ...dts-changes-with-timeout-before-request.js | 4 +- .../dependency-dts-changes.js | 4 +- .../dependency-dts-created.js | 4 + .../dependency-dts-deleted.js | 4 +- ...dts-changes-with-timeout-before-request.js | 4 +- .../dependency-dts-changes.js | 4 +- .../dependency-dts-deleted.js | 4 +- ...dts-changes-with-timeout-before-request.js | 4 +- .../dependency-dts-changes.js | 4 +- .../dependency-dts-deleted.js | 4 +- ...directory-watch-invoke-on-file-creation.js | 2 - ...issing-files-added-with-tripleslash-ref.js | 4 +- ...ect-watch-options-in-host-configuration.js | 4 +- .../external-project-watch-options.js | 4 +- .../watchEnvironment/files-at-root.js | 12 +- .../files-at-windows-style-root.js | 12 +- .../watchEnvironment/files-not-at-root.js | 12 +- .../files-not-at-windows-style-root.js | 12 +- ...ect-watch-options-in-host-configuration.js | 12 +- .../inferred-project-watch-options.js | 12 +- .../project-with-ascii-file-names-with-i.js | 8 +- .../project-with-ascii-file-names.js | 8 +- .../project-with-unicode-file-names.js | 8 +- ...files-starting-with-dot-in-node_modules.js | 84 +- ...polling-when-file-is-added-to-subfolder.js | 22 +- ...rectory-when-file-is-added-to-subfolder.js | 28 +- ...tchFile-when-file-is-added-to-subfolder.js | 28 +- ...watching-files-with-network-style-paths.js | 40 +- ...e-can-create-multiple-watchers-per-file.js | 9 +- ...en-watchFile-is-single-watcher-per-file.js | 9 +- ...excludeDirectories-option-in-configFile.js | 8 +- ...ludeDirectories-option-in-configuration.js | 8 +- ...ackPolling-option-as-host-configuration.js | 6 +- ...th-fallbackPolling-option-in-configFile.js | 6 +- ...hDirectory-option-as-host-configuration.js | 12 +- ...ith-watchDirectory-option-in-configFile.js | 12 +- .../with-watchFile-option-in-configFile.js | 8 +- 365 files changed, 10153 insertions(+), 10114 deletions(-) diff --git a/src/compiler/sys.ts b/src/compiler/sys.ts index b0cc058fd93bf..02d68f3fa34d9 100644 --- a/src/compiler/sys.ts +++ b/src/compiler/sys.ts @@ -968,7 +968,7 @@ namespace ts { // Use notifications from FS to watch with falling back to fs.watchFile generateWatchFileOptions(WatchFileKind.UseFsEventsOnParentDirectory, PollingWatchKind.PriorityInterval, options) : // Default to do not use fixed polling interval - { watchFile: defaultWatchFileKind?.() || WatchFileKind.FixedPollingInterval }; + { watchFile: defaultWatchFileKind?.() || WatchFileKind.UseFsEvents }; } } diff --git a/src/tsserver/nodeServer.ts b/src/tsserver/nodeServer.ts index 984e6adbbc6b1..0bfc5f5871931 100644 --- a/src/tsserver/nodeServer.ts +++ b/src/tsserver/nodeServer.ts @@ -247,20 +247,6 @@ namespace ts.server { // Override sys.write because fs.writeSync is not reliable on Node 4 sys.write = (s: string) => writeMessage(sys.bufferFrom!(s, "utf8") as globalThis.Buffer); - // REVIEW: for now this implementation uses polling. - // The advantage of polling is that it works reliably - // on all os and with network mounted files. - // For 90 referenced files, the average time to detect - // changes is 2*msInterval (by default 5 seconds). - // The overhead of this is .04 percent (1/2500) with - // average pause of < 1 millisecond (and max - // pause less than 1.5 milliseconds); question is - // do we anticipate reference sets in the 100s and - // do we care about waiting 10-20 seconds to detect - // changes for large reference sets? If so, do we want - // to increase the chunk size or decrease the interval - // time dynamically to match the large reference set? - sys.defaultWatchFileKind = () => WatchFileKind.FixedChunkSizePolling; /* eslint-disable no-restricted-globals */ sys.setTimeout = setTimeout; 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 cac0321a7d86a..379c09d72ce87 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 @@ -57,14 +57,14 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -151,14 +151,14 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -198,14 +198,14 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -243,14 +243,14 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -291,14 +291,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: 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 65a4132a90561..bf321cb660b4a 100644 --- a/tests/baselines/reference/tsbuildWatch/demo/updates-with-bad-reference.js +++ b/tests/baselines/reference/tsbuildWatch/demo/updates-with-bad-reference.js @@ -246,30 +246,30 @@ Shape signatures in builder refreshed for:: /user/username/projects/demo/core/utilities.ts (used version) PolledWatches:: +/user/username/projects/demo/animals/package.json: + {"pollingInterval":2000} + +FsWatches:: /user/username/projects/demo/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/demo/tsconfig-base.json: - {"pollingInterval":250} + {} /user/username/projects/demo/core/utilities.ts: - {"pollingInterval":250} -/user/username/projects/demo/animals/package.json: - {"pollingInterval":250} + {} /user/username/projects/demo/animals/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/demo/animals/animal.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/animals/dog.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/animals/index.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/zoo/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/demo/zoo/zoo.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/demo/core: @@ -522,30 +522,30 @@ Shape signatures in builder refreshed for:: /user/username/projects/demo/animals/index.ts (computed .d.ts) PolledWatches:: +/user/username/projects/demo/animals/package.json: + {"pollingInterval":2000} + +FsWatches:: /user/username/projects/demo/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/demo/tsconfig-base.json: - {"pollingInterval":250} + {} /user/username/projects/demo/core/utilities.ts: - {"pollingInterval":250} -/user/username/projects/demo/animals/package.json: - {"pollingInterval":250} + {} /user/username/projects/demo/animals/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/demo/animals/animal.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/animals/dog.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/animals/index.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/zoo/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/demo/zoo/zoo.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/demo/core: 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 07b93e799053c..9f0c69dec6d54 100644 --- a/tests/baselines/reference/tsbuildWatch/demo/updates-with-circular-reference.js +++ b/tests/baselines/reference/tsbuildWatch/demo/updates-with-circular-reference.js @@ -168,28 +168,28 @@ Output:: PolledWatches:: + +FsWatches:: /user/username/projects/demo/animals/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/demo/tsconfig-base.json: - {"pollingInterval":250} + {} /user/username/projects/demo/animals/animal.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/animals/dog.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/animals/index.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/zoo/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/demo/zoo/zoo.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/demo/core/utilities.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/demo/animals: @@ -299,28 +299,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/demo/zoo/zoo.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/demo/animals/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/demo/tsconfig-base.json: - {"pollingInterval":250} + {} /user/username/projects/demo/animals/animal.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/animals/dog.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/animals/index.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/zoo/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/demo/zoo/zoo.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/demo/core/utilities.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/demo/animals: 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 b6b9001cc34d9..cfd422ce7785f 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 @@ -149,22 +149,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/const.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/other.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/package.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg2: @@ -337,22 +337,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/const.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/other.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/package.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg2: @@ -439,22 +439,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/const.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/other.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/package.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg2: 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 f905a17711032..a72de20d9b813 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 @@ -143,30 +143,30 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (used version) PolledWatches:: +/a/lib/package.json: + {"pollingInterval":2000} +/a/package.json: + {"pollingInterval":2000} +/package.json: + {"pollingInterval":2000} +/user/username/projects/myproject/packages/pkg2/build/package.json: + {"pollingInterval":2000} + +FsWatches:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/const.cts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/package.json: - {"pollingInterval":250} -/a/lib/package.json: - {"pollingInterval":250} -/a/package.json: - {"pollingInterval":250} -/package.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/package.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/pkg2/build/package.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg2: @@ -341,30 +341,30 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (computed .d.ts) PolledWatches:: +/a/lib/package.json: + {"pollingInterval":2000} +/a/package.json: + {"pollingInterval":2000} +/package.json: + {"pollingInterval":2000} +/user/username/projects/myproject/packages/pkg2/build/package.json: + {"pollingInterval":2000} + +FsWatches:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/const.cts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/package.json: - {"pollingInterval":250} -/a/lib/package.json: - {"pollingInterval":250} -/a/package.json: - {"pollingInterval":250} -/package.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/package.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/pkg2/build/package.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg2: @@ -446,30 +446,30 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (computed .d.ts) PolledWatches:: +/a/lib/package.json: + {"pollingInterval":2000} +/a/package.json: + {"pollingInterval":2000} +/package.json: + {"pollingInterval":2000} +/user/username/projects/myproject/packages/pkg2/build/package.json: + {"pollingInterval":2000} + +FsWatches:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/const.cts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/package.json: - {"pollingInterval":250} -/a/lib/package.json: - {"pollingInterval":250} -/a/package.json: - {"pollingInterval":250} -/package.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/package.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/pkg2/build/package.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg2: @@ -564,30 +564,30 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (computed .d.ts) PolledWatches:: +/a/lib/package.json: + {"pollingInterval":2000} +/a/package.json: + {"pollingInterval":2000} +/package.json: + {"pollingInterval":2000} +/user/username/projects/myproject/packages/pkg2/build/package.json: + {"pollingInterval":2000} + +FsWatches:: /user/username/projects/myproject/packages/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/const.cts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/package.json: - {"pollingInterval":250} -/a/lib/package.json: - {"pollingInterval":250} -/a/package.json: - {"pollingInterval":250} -/package.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/package.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/pkg2/build/package.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg2: @@ -710,30 +710,30 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/packages/pkg2/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/pkg2/const.cts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/pkg2/package.json: - {"pollingInterval":250} /a/lib/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} /a/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} /package.json: - {"pollingInterval":250} + {"pollingInterval":2000} +/user/username/projects/myproject/packages/pkg2/build/package.json: + {"pollingInterval":2000} + +FsWatches:: +/user/username/projects/myproject/packages/pkg2/tsconfig.json: + {} +/user/username/projects/myproject/packages/pkg2/const.cts: + {} +/user/username/projects/myproject/packages/pkg2/package.json: + {} /user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg1/package.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/pkg2/build/package.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/packages/pkg2/index.cts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg2: 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 5bca0fdfae4b2..e8d6dbf6c21fd 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 @@ -108,24 +108,24 @@ 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/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/project1/index.ts: - {"pollingInterval":250} /user/username/projects/myproject/project1/node_modules/file/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types/foo/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types/bar/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} + +FsWatches:: +/user/username/projects/myproject/project1/tsconfig.json: + {} +/user/username/projects/myproject/project1/index.ts: + {} /user/username/projects/myproject/project2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/project2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -306,24 +306,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/project1/index.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/project1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/project1/index.ts: - {"pollingInterval":250} /user/username/projects/myproject/project1/node_modules/file/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types/foo/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/node_modules/@types/bar/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} + +FsWatches:: +/user/username/projects/myproject/project1/tsconfig.json: + {} +/user/username/projects/myproject/project1/index.ts: + {} /user/username/projects/myproject/project2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/project2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: 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 88d99e03fa8aa..2974c0e85109a 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 @@ -59,14 +59,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.js: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -153,14 +153,14 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.js: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -206,14 +206,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.js: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 39b265f6ff7de..928bef1f08302 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 @@ -59,14 +59,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.js: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -105,14 +105,14 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.js: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -158,14 +158,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.js: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 9b535ef9e10ec..222a89e14811f 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 @@ -74,16 +74,16 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -181,16 +181,16 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -243,16 +243,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -378,16 +378,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -507,16 +507,16 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -561,16 +561,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -660,16 +660,16 @@ Output:: PolledWatches:: + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: 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 f73b760bc1054..6c59d666568b5 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 @@ -74,16 +74,16 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -128,16 +128,16 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -190,16 +190,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -268,16 +268,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -322,16 +322,16 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -378,16 +378,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -437,16 +437,16 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: 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 b5d368bb8f820..3c6404da59214 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 @@ -175,22 +175,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: 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 fa56913fea86a..8fd384d2ab2b0 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 @@ -192,22 +192,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -533,22 +533,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -710,22 +710,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: 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 3ab6e1f31de31..346573fdda21b 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 @@ -53,14 +53,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewithouterror.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/solution/app/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewitherror.ts: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewithouterror.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/solution/app: @@ -186,14 +186,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewitherror.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/solution/app/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewitherror.ts: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewithouterror.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/solution/app: @@ -237,14 +237,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewithouterror.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/solution/app/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewitherror.ts: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewithouterror.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/solution/app: 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 f406259a70304..77a79ff9c3d92 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 @@ -53,14 +53,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewithouterror.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/solution/app/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewitherror.ts: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewithouterror.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/solution/app: @@ -186,14 +186,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewitherror.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/solution/app/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewitherror.ts: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewithouterror.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/solution/app: @@ -221,14 +221,14 @@ Output:: PolledWatches:: + +FsWatches:: /user/username/projects/solution/app/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewitherror.ts: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewithouterror.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/solution/app: 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 76bbc19c1991e..a4cd6a85a9680 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 @@ -58,14 +58,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewithouterror.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/solution/app/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewitherror.ts: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewithouterror.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/solution/app: @@ -109,14 +109,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewithouterror.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/solution/app/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewitherror.ts: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewithouterror.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/solution/app: 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 fa57b2c2165c6..b6b2cba61a108 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 @@ -58,14 +58,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewithouterror.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/solution/app/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewitherror.ts: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewithouterror.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/solution/app: @@ -107,14 +107,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/solution/app/filewitherror.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/solution/app/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewitherror.ts: - {"pollingInterval":250} + {} /user/username/projects/solution/app/filewithouterror.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/solution/app: 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 df77e4d53ba2d..6a897ac09e39a 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 @@ -175,22 +175,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -513,22 +513,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -670,22 +670,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: 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 b5c451c498394..8db898720028b 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 @@ -174,22 +174,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -511,22 +511,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -667,22 +667,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: 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 5a712d84b35e6..d10e7a7d333e6 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 @@ -61,14 +61,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -155,14 +155,14 @@ Input:: Output:: PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -206,16 +206,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/file3.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/file3.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -291,16 +291,16 @@ Input:: Output:: PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/file3.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: 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 616ba148c55e6..363c3cae53f1b 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 @@ -68,14 +68,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -170,14 +170,14 @@ Input:: Output:: PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -221,16 +221,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/file3.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/file3.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -311,16 +311,16 @@ Input:: Output:: PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/file3.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/tsbuildinfo-has-error.js b/tests/baselines/reference/tsbuildWatch/programUpdates/tsbuildinfo-has-error.js index b0abd8fc9deda..bd2dd3afe4d51 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/tsbuildinfo-has-error.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/tsbuildinfo-has-error.js @@ -47,12 +47,12 @@ Shape signatures in builder refreshed for:: /src/project/main.ts (used version) PolledWatches:: -/src/project/tsconfig.json: - {"pollingInterval":250} -/src/project/main.ts: - {"pollingInterval":250} FsWatches:: +/src/project/tsconfig.json: + {} +/src/project/main.ts: + {} FsWatchesRecursive:: /src/project: 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 7d2843c59a9e2..24c034927daba 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 @@ -151,18 +151,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: 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 f9977ea86ce9e..e2e8e17d635e6 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 @@ -98,20 +98,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/sample1/logic/tsconfig.json: + {"pollingInterval":2000} + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} -/user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -219,6 +219,8 @@ Input:: Output:: +sysLog:: /user/username/projects/sample1/logic/tsconfig.json:: Changing watcher to PresentFileSystemEntryWatcher + >> Screen clear [12:00:58 AM] File change detected. Starting incremental compilation... @@ -246,22 +248,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/logic/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} -/user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} + {} +/user/username/projects/sample1/logic/tsconfig.json: + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -397,22 +399,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} -/user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} + {} +/user/username/projects/sample1/logic/tsconfig.json: + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: 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 c5d2caf57ebd7..8f5472e2c20a7 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 @@ -80,16 +80,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/app/app.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/library/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/library/library.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/app/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/app/app.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/library: @@ -229,16 +229,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/app/app.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/library/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/library/library.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/app/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/app/app.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/library: @@ -361,16 +361,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/app/app.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/library/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/library/library.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/app/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/app/app.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/library: 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 93fefc0ba0df2..4d5d985e8af28 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 @@ -58,16 +58,16 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -292,16 +292,16 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -411,16 +411,16 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -576,16 +576,16 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -678,16 +678,16 @@ Output:: PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: 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 0332e616cc011..ad7f13db127fc 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 @@ -149,22 +149,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -465,24 +465,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/newfile.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/newfile.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -590,24 +590,24 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/newfile.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -650,24 +650,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/newfile.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/newfile.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -783,24 +783,24 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/newfile.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: 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 3faea5c974332..bc12d10d038ff 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 @@ -149,22 +149,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -468,22 +468,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -607,22 +607,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -818,22 +818,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -949,22 +949,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -1162,22 +1162,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -1309,22 +1309,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: 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 f58744ef830d3..3a2be62e6b697 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 @@ -149,22 +149,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -470,22 +470,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: 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 8858cdbea3304..170687de06576 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 @@ -175,22 +175,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -499,24 +499,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/newfile.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/newfile.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -629,24 +629,24 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/newfile.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -689,24 +689,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/newfile.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/newfile.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -827,24 +827,24 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/newfile.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: 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 97de2cf0f5c70..8be952cd3526a 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 @@ -175,22 +175,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -502,22 +502,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -646,22 +646,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -857,22 +857,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -993,22 +993,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -1206,22 +1206,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -1358,22 +1358,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: 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 0df514f3b3492..fb243e3a3a829 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 @@ -175,22 +175,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/tests/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -504,22 +504,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/sample1/core/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: 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 d0392a5a11d8e..e4348e4fcccd1 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 @@ -93,24 +93,24 @@ Shape signatures in builder refreshed for:: /a/b/other.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /a/b/project1.tsconfig.json: - {"pollingInterval":250} + {} /a/b/alpha.tsconfig.json: - {"pollingInterval":250} + {} /a/b/commonfile1.ts: - {"pollingInterval":250} + {} /a/b/commonfile2.ts: - {"pollingInterval":250} + {} /a/b/project2.tsconfig.json: - {"pollingInterval":250} + {} /a/b/bravo.tsconfig.json: - {"pollingInterval":250} + {} /a/b/other.ts: - {"pollingInterval":250} + {} /a/b/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -243,18 +243,18 @@ Output:: PolledWatches:: + +FsWatches:: /a/b/project1.tsconfig.json: - {"pollingInterval":250} + {} /a/b/alpha.tsconfig.json: - {"pollingInterval":250} + {} /a/b/commonfile1.ts: - {"pollingInterval":250} + {} /a/b/commonfile2.ts: - {"pollingInterval":250} + {} /a/b/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: 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 ebb2d30daf862..99287ab952531 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 @@ -49,12 +49,12 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/index.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/index.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/index.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -92,12 +92,12 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/index.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/index.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 fd1b80e562125..50de68e46f573 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 @@ -89,22 +89,22 @@ Shape signatures in builder refreshed for:: /a/b/other.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /a/b/project1.tsconfig.json: - {"pollingInterval":250} + {} /a/b/alpha.tsconfig.json: - {"pollingInterval":250} + {} /a/b/commonfile1.ts: - {"pollingInterval":250} + {} /a/b/commonfile2.ts: - {"pollingInterval":250} + {} /a/b/project2.tsconfig.json: - {"pollingInterval":250} + {} /a/b/bravo.tsconfig.json: - {"pollingInterval":250} + {} /a/b/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -249,22 +249,22 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /a/b/project1.tsconfig.json: - {"pollingInterval":250} + {} /a/b/alpha.tsconfig.json: - {"pollingInterval":250} + {} /a/b/commonfile1.ts: - {"pollingInterval":250} + {} /a/b/commonfile2.ts: - {"pollingInterval":250} + {} /a/b/project2.tsconfig.json: - {"pollingInterval":250} + {} /a/b/bravo.tsconfig.json: - {"pollingInterval":250} + {} /a/b/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -353,22 +353,22 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /a/b/project1.tsconfig.json: - {"pollingInterval":250} + {} /a/b/alpha.tsconfig.json: - {"pollingInterval":250} + {} /a/b/commonfile1.ts: - {"pollingInterval":250} + {} /a/b/commonfile2.ts: - {"pollingInterval":250} + {} /a/b/project2.tsconfig.json: - {"pollingInterval":250} + {} /a/b/bravo.tsconfig.json: - {"pollingInterval":250} + {} /a/b/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -451,22 +451,22 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /a/b/project1.tsconfig.json: - {"pollingInterval":250} + {} /a/b/alpha.tsconfig.json: - {"pollingInterval":250} + {} /a/b/commonfile1.ts: - {"pollingInterval":250} + {} /a/b/commonfile2.ts: - {"pollingInterval":250} + {} /a/b/project2.tsconfig.json: - {"pollingInterval":250} + {} /a/b/bravo.tsconfig.json: - {"pollingInterval":250} + {} /a/b/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -555,20 +555,20 @@ Shape signatures in builder refreshed for:: /a/b/other.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /a/b/project1.tsconfig.json: - {"pollingInterval":250} + {} /a/b/alpha.tsconfig.json: - {"pollingInterval":250} + {} /a/b/commonfile1.ts: - {"pollingInterval":250} + {} /a/b/commonfile2.ts: - {"pollingInterval":250} + {} /a/b/project2.tsconfig.json: - {"pollingInterval":250} + {} /a/b/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -617,20 +617,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /a/b/project1.tsconfig.json: - {"pollingInterval":250} + {} /a/b/alpha.tsconfig.json: - {"pollingInterval":250} + {} /a/b/commonfile1.ts: - {"pollingInterval":250} + {} /a/b/commonfile2.ts: - {"pollingInterval":250} + {} /a/b/project2.tsconfig.json: - {"pollingInterval":250} + {} /a/b/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -722,20 +722,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /a/b/project1.tsconfig.json: - {"pollingInterval":250} + {} /a/b/alpha.tsconfig.json: - {"pollingInterval":250} + {} /a/b/commonfile1.ts: - {"pollingInterval":250} + {} /a/b/commonfile2.ts: - {"pollingInterval":250} + {} /a/b/project2.tsconfig.json: - {"pollingInterval":250} + {} /a/b/other.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: 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 c574ed89a8386..1cac34a0e6a70 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 @@ -627,102 +627,102 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg22/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -1977,102 +1977,102 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -2198,102 +2198,102 @@ Input:: Output:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -2377,102 +2377,102 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -2668,102 +2668,102 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -2914,102 +2914,102 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + +FsWatches:: +/user/username/projects/myproject/pkg0/tsconfig.json: + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -3160,102 +3160,102 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -3406,102 +3406,102 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -3603,102 +3603,102 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -3760,102 +3760,102 @@ Input:: Output:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -3939,102 +3939,102 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -4232,102 +4232,102 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -4478,102 +4478,102 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -4702,102 +4702,102 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -5000,102 +5000,102 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -5184,102 +5184,102 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -5480,102 +5480,102 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -5726,102 +5726,102 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -5972,102 +5972,102 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -6218,102 +6218,102 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -6415,102 +6415,102 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -6572,102 +6572,102 @@ Input:: Output:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg8/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg9/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg10/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg11/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg12/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg13/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg14/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg15/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg16/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg17/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg18/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg19/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg20/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg21/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg22/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: 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 fa9e78f8a9077..9ec7404042a0c 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 @@ -107,22 +107,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg2/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -317,22 +317,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -398,22 +398,22 @@ Input:: Output:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -457,22 +457,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -579,22 +579,22 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -616,22 +616,22 @@ Input:: Output:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: 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 f9ae4a12b92a0..d7630623fda07 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 @@ -159,30 +159,30 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg4/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -483,30 +483,30 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -578,30 +578,30 @@ Input:: Output:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -649,30 +649,30 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -817,30 +817,30 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -868,30 +868,30 @@ Input:: Output:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: 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 956e449148627..f21bca02aecd5 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 @@ -237,42 +237,42 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg7/index.ts (computed .d.ts during emit) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -732,42 +732,42 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -848,42 +848,42 @@ Input:: Output:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -937,42 +937,42 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -1138,42 +1138,42 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -1245,42 +1245,42 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -1312,42 +1312,42 @@ Input:: Output:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -1401,42 +1401,42 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -1604,42 +1604,42 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -1718,42 +1718,42 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/pkg0/index.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -1872,42 +1872,42 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -1939,42 +1939,42 @@ Input:: Output:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg4/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg5/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg6/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg7/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: diff --git a/tests/baselines/reference/tsbuildWatch/publicApi/with-custom-transformers.js b/tests/baselines/reference/tsbuildWatch/publicApi/with-custom-transformers.js index 7c1982ef06f60..941e4d661c54d 100644 --- a/tests/baselines/reference/tsbuildWatch/publicApi/with-custom-transformers.js +++ b/tests/baselines/reference/tsbuildWatch/publicApi/with-custom-transformers.js @@ -86,18 +86,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/webpack/index.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/shared/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/shared/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/webpack/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/webpack/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/shared: @@ -312,18 +312,18 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/shared/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/shared/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/webpack/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/webpack/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/shared: diff --git a/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js b/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js index c30c25187f5db..09f5c3d521927 100644 --- a/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js +++ b/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js @@ -126,22 +126,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/reexport/src/main/index.ts (used version) PolledWatches:: +/user/username/projects/reexport/src/pure/package.json: + {"pollingInterval":2000} + +FsWatches:: /user/username/projects/reexport/src/pure/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/reexport/src/pure/index.ts: - {"pollingInterval":250} + {} /user/username/projects/reexport/src/pure/session.ts: - {"pollingInterval":250} + {} /user/username/projects/reexport/src/main/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/reexport/src/main/index.ts: - {"pollingInterval":250} -/user/username/projects/reexport/src/pure/package.json: - {"pollingInterval":250} + {} /user/username/projects/reexport/src/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/reexport/src/pure: @@ -326,22 +326,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/reexport/src/main/index.ts (used version) PolledWatches:: +/user/username/projects/reexport/src/pure/package.json: + {"pollingInterval":2000} + +FsWatches:: /user/username/projects/reexport/src/pure/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/reexport/src/pure/index.ts: - {"pollingInterval":250} + {} /user/username/projects/reexport/src/pure/session.ts: - {"pollingInterval":250} + {} /user/username/projects/reexport/src/main/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/reexport/src/main/index.ts: - {"pollingInterval":250} -/user/username/projects/reexport/src/pure/package.json: - {"pollingInterval":250} + {} /user/username/projects/reexport/src/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/reexport/src/pure: @@ -483,22 +483,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/reexport/src/main/index.ts (used version) PolledWatches:: +/user/username/projects/reexport/src/pure/package.json: + {"pollingInterval":2000} + +FsWatches:: /user/username/projects/reexport/src/pure/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/reexport/src/pure/index.ts: - {"pollingInterval":250} + {} /user/username/projects/reexport/src/pure/session.ts: - {"pollingInterval":250} + {} /user/username/projects/reexport/src/main/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/reexport/src/main/index.ts: - {"pollingInterval":250} -/user/username/projects/reexport/src/pure/package.json: - {"pollingInterval":250} + {} /user/username/projects/reexport/src/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/reexport/src/pure: 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 a726b29487618..b99511351618d 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 @@ -148,28 +148,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/typings/xterm.d.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/typings/xterm.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -308,28 +308,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/typings/xterm.d.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/typings/xterm.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -364,24 +364,24 @@ Output:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/typings/xterm.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -470,24 +470,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/typings/xterm.d.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/typings/xterm.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -524,10 +524,10 @@ Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: @@ -544,10 +544,10 @@ export const typing = 10;export const typing1 = 10; Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects.js b/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects.js index a726b29487618..b99511351618d 100644 --- a/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects.js +++ b/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects.js @@ -148,28 +148,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/typings/xterm.d.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/typings/xterm.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -308,28 +308,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/typings/xterm.d.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/typings/xterm.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg3/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -364,24 +364,24 @@ Output:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/typings/xterm.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -470,24 +470,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/typings/xterm.d.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg0/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/typings/xterm.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg1/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/pkg2/index.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/pkg0: @@ -524,10 +524,10 @@ Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: @@ -544,10 +544,10 @@ export const typing = 10;export const typing1 = 10; Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} FsWatchesRecursive:: 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 44b5d568e26e7..0c489ceedba2c 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 @@ -44,14 +44,14 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) PolledWatches:: + +FsWatches:: /tsconfig.json: - {"pollingInterval":250} + {} /f.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /: @@ -91,14 +91,14 @@ Shape signatures in builder refreshed for:: /f.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /tsconfig.json: - {"pollingInterval":250} + {} /f.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} 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 fed10b3efb9b6..b00b0890299fa 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 @@ -43,14 +43,14 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) PolledWatches:: + +FsWatches:: /tsconfig.json: - {"pollingInterval":250} + {} /f.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /: @@ -90,14 +90,14 @@ Shape signatures in builder refreshed for:: /f.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /tsconfig.json: - {"pollingInterval":250} + {} /f.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /: diff --git a/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js b/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js index f992205d5fa81..a05dcb42c9161 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js @@ -45,12 +45,12 @@ Shape signatures in builder refreshed for:: /f.ts (used version) PolledWatches:: -/f.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/f.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -95,12 +95,12 @@ Shape signatures in builder refreshed for:: /f.ts (computed .d.ts) PolledWatches:: -/f.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/f.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js b/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js index 230104578c46c..9b9116e56e3e4 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js @@ -47,12 +47,12 @@ Shape signatures in builder refreshed for:: /f.ts (used version) PolledWatches:: -/f.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/f.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -97,12 +97,12 @@ Shape signatures in builder refreshed for:: /f.ts (computed .d.ts) PolledWatches:: -/f.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/f.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js b/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js index 1a89f49ab86e9..186bc73425dc6 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js @@ -40,12 +40,12 @@ Shape signatures in builder refreshed for:: /f.ts (used version) PolledWatches:: -/f.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/f.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -83,12 +83,12 @@ Shape signatures in builder refreshed for:: /f.ts (computed .d.ts) PolledWatches:: -/f.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/f.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 319f0f776afe3..fde12f08a4113 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/without---diagnostics-or---extendedDiagnostics.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/without---diagnostics-or---extendedDiagnostics.js @@ -41,12 +41,12 @@ Shape signatures in builder refreshed for:: /f.ts (used version) PolledWatches:: -/f.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/f.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -85,12 +85,12 @@ Shape signatures in builder refreshed for:: /f.ts (computed .d.ts) PolledWatches:: -/f.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/f.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 31cfca4a57773..12d32117dbc50 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 @@ -53,16 +53,16 @@ Shape signatures in builder refreshed for:: /user/someone/projects/myproject/file3.ts (used version) PolledWatches:: + +FsWatches:: /user/someone/projects/myproject/file3.ts: - {"pollingInterval":250} + {} /user/someone/projects/myproject/file2.ts: - {"pollingInterval":250} + {} /user/someone/projects/myproject/file1.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -116,16 +116,16 @@ Shape signatures in builder refreshed for:: /user/someone/projects/myproject/file3.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/someone/projects/myproject/file3.ts: - {"pollingInterval":250} + {} /user/someone/projects/myproject/file2.ts: - {"pollingInterval":250} + {} /user/someone/projects/myproject/file1.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: 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 47fdf011ef796..d21d02c531b6e 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 @@ -44,16 +44,16 @@ Shape signatures in builder refreshed for:: /home/username/project/app/file.ts (used version) PolledWatches:: -/home/username/project/tsconfig.json: - {"pollingInterval":250} -/home/username/project/app/file.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /home/username/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/home/username/project/tsconfig.json: + {} +/home/username/project/app/file.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /home/username/project/app: @@ -97,16 +97,16 @@ Shape signatures in builder refreshed for:: /home/username/project/app/file.ts (computed .d.ts) PolledWatches:: -/home/username/project/tsconfig.json: - {"pollingInterval":250} -/home/username/project/app/file.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /home/username/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/home/username/project/tsconfig.json: + {} +/home/username/project/app/file.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /home/username/project/app: diff --git a/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-carriageReturn-lineFeed.js b/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-carriageReturn-lineFeed.js index 3cdb037bfa4f6..5b15dd701b627 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-carriageReturn-lineFeed.js +++ b/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-carriageReturn-lineFeed.js @@ -42,12 +42,12 @@ Shape signatures in builder refreshed for:: /a/app.ts (used version) PolledWatches:: -/a/app.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/a/app.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -91,12 +91,12 @@ Shape signatures in builder refreshed for:: /a/app.ts (computed .d.ts) PolledWatches:: -/a/app.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/a/app.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-lineFeed.js b/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-lineFeed.js index f7e0ca93a2983..ca0aaababcbe9 100644 --- a/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-lineFeed.js +++ b/tests/baselines/reference/tscWatch/emit/emit-file-content/handles-new-lines-lineFeed.js @@ -42,12 +42,12 @@ Shape signatures in builder refreshed for:: /a/app.ts (used version) PolledWatches:: -/a/app.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/a/app.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -91,12 +91,12 @@ Shape signatures in builder refreshed for:: /a/app.ts (computed .d.ts) PolledWatches:: -/a/app.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/a/app.ts: + {} +/a/lib/lib.d.ts: + {} 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 0a7c7fa08d9c8..7b6de07018292 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 @@ -56,20 +56,20 @@ Shape signatures in builder refreshed for:: /a/b/f3.ts (used version) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/f1.ts: - {"pollingInterval":250} + {} /a/b/f2.ts: - {"pollingInterval":250} + {} /a/b/f3.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -136,20 +136,20 @@ Shape signatures in builder refreshed for:: /a/b/f3.ts (computed .d.ts) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/f1.ts: - {"pollingInterval":250} + {} /a/b/f2.ts: - {"pollingInterval":250} + {} /a/b/f3.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -203,20 +203,20 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (computed .d.ts) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/f1.ts: - {"pollingInterval":250} + {} /a/b/f2.ts: - {"pollingInterval":250} + {} /a/b/f3.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: 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 81546f3172cb5..941178467ee04 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 @@ -73,24 +73,24 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -173,24 +173,24 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (used version) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: 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 a3b0e1c619281..d2f2de8cabbc4 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 @@ -56,24 +56,24 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -161,24 +161,24 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: 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 d15c77375f17e..0edef8a78a3c1 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 @@ -68,24 +68,24 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -161,22 +161,22 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (computed .d.ts) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: 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 6afcb2334c980..ba3b0ad81dc98 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 @@ -68,24 +68,24 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -169,26 +169,26 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (computed .d.ts) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} + {} /a/b/file1consumer3.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: 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 a550e3069641e..bfe428a880c14 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 @@ -68,24 +68,24 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -164,24 +164,24 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (computed .d.ts) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -237,24 +237,24 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer2.ts (computed .d.ts) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -306,24 +306,24 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (computed .d.ts) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -391,24 +391,24 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (computed .d.ts) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -464,24 +464,24 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (computed .d.ts) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: 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 0284886d584b0..081fb7a307059 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 @@ -68,24 +68,24 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -163,24 +163,24 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (computed .d.ts) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -238,24 +238,24 @@ Shape signatures in builder refreshed for:: /a/b/modulefile1.ts (computed .d.ts) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: 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 97761e07860fc..86c374e4d9f4a 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 @@ -59,18 +59,18 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/file1consumer1.ts: - {"pollingInterval":250} -/a/b/modulefile1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/file1consumer1.ts: + {} +/a/b/modulefile1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -125,18 +125,18 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (computed .d.ts) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/file1consumer1.ts: - {"pollingInterval":250} -/a/b/modulefile1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/file1consumer1.ts: + {} +/a/b/modulefile1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -183,18 +183,18 @@ Shape signatures in builder refreshed for:: /a/b/modulefile1.ts (computed .d.ts) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/file1consumer1.ts: - {"pollingInterval":250} -/a/b/modulefile1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/file1consumer1.ts: + {} +/a/b/modulefile1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 215d3443871ce..953d96e18ee59 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 @@ -55,18 +55,18 @@ Shape signatures in builder refreshed for:: /a/b/referencefile1.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/referencefile1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/modulefile2.ts: - {"pollingInterval":250} + {"pollingInterval":500} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/referencefile1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: @@ -128,18 +128,18 @@ Shape signatures in builder refreshed for:: /a/b/referencefile1.ts (computed .d.ts) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/referencefile1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/modulefile2.ts: - {"pollingInterval":250} + {"pollingInterval":500} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/referencefile1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: @@ -199,18 +199,18 @@ Shape signatures in builder refreshed for:: /a/b/referencefile1.ts (computed .d.ts) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/referencefile1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} -/a/b/modulefile2.ts: - {"pollingInterval":250} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/referencefile1.ts: + {} +/a/lib/lib.d.ts: + {} +/a/b/modulefile2.ts: + {} FsWatchesRecursive:: /a/b: 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 a7630c2846e6d..6ea15155f97f4 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 @@ -56,18 +56,18 @@ Shape signatures in builder refreshed for:: /a/b/referencefile1.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/modulefile1.ts: - {"pollingInterval":250} -/a/b/referencefile1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/modulefile1.ts: + {} +/a/b/referencefile1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: @@ -130,18 +130,18 @@ Shape signatures in builder refreshed for:: /a/b/referencefile1.ts (computed .d.ts) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/referencefile1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} /a/b/modulefile1.ts: - {"pollingInterval":250} + {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/referencefile1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: 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 b8b45163727e1..b2f54a289b960 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 @@ -68,24 +68,24 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -168,24 +168,24 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (computed .d.ts) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: 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 033ba093be13f..43d3b986ce3fd 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 @@ -74,26 +74,26 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer1consumer1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -175,26 +175,26 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1consumer1.ts (computed .d.ts) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer1consumer1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -249,26 +249,26 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (computed .d.ts) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer1consumer1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: @@ -331,26 +331,26 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1consumer1.ts (computed .d.ts) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/file1consumer1.ts: - {"pollingInterval":250} + {} /a/b/modulefile1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer1consumer1.ts: - {"pollingInterval":250} + {} /a/b/file1consumer2.ts: - {"pollingInterval":250} + {} /a/b/globalfile3.ts: - {"pollingInterval":250} + {} /a/b/modulefile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /a/b: 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 1a86b4ba01bb4..e4a9b7b21a2fc 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 @@ -52,18 +52,18 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/file1.ts: - {"pollingInterval":250} -/a/b/file2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/file1.ts: + {} +/a/b/file2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: @@ -121,18 +121,18 @@ Shape signatures in builder refreshed for:: /a/b/file2.ts (computed .d.ts) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/file1.ts: - {"pollingInterval":250} -/a/b/file2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/file1.ts: + {} +/a/b/file2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: 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 655e6f2f95d4b..fc1916285b419 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 @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) PolledWatches:: -/a/tsconfig.json: - {"pollingInterval":250} -/a/a.ts: - {"pollingInterval":250} -/a/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/tsconfig.json: + {} +/a/a.ts: + {} +/a/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a: @@ -111,18 +111,18 @@ Shape signatures in builder refreshed for:: /a/b.ts (computed .d.ts) PolledWatches:: -/a/tsconfig.json: - {"pollingInterval":250} -/a/a.ts: - {"pollingInterval":250} -/a/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/tsconfig.json: + {} +/a/a.ts: + {} +/a/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a: @@ -169,18 +169,18 @@ Shape signatures in builder refreshed for:: /a/b.ts (computed .d.ts) PolledWatches:: -/a/tsconfig.json: - {"pollingInterval":250} -/a/a.ts: - {"pollingInterval":250} -/a/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/tsconfig.json: + {} +/a/a.ts: + {} +/a/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a: 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 155601e04b258..6ae4da98b2eaf 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 @@ -44,18 +44,18 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/a/tsconfig.json: - {"pollingInterval":250} -/a/a.ts: - {"pollingInterval":250} -/a/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/tsconfig.json: + {} +/a/a.ts: + {} +/a/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a: @@ -97,18 +97,18 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/a/tsconfig.json: - {"pollingInterval":250} -/a/a.ts: - {"pollingInterval":250} -/a/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/tsconfig.json: + {} +/a/a.ts: + {} +/a/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a: @@ -150,18 +150,18 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/a/tsconfig.json: - {"pollingInterval":250} -/a/a.ts: - {"pollingInterval":250} -/a/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/tsconfig.json: + {} +/a/a.ts: + {} +/a/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a: 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 108ffc938f963..9bb2c4a4112be 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 @@ -44,18 +44,18 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/a/tsconfig.json: - {"pollingInterval":250} -/a/a.ts: - {"pollingInterval":250} -/a/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/tsconfig.json: + {} +/a/a.ts: + {} +/a/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a: @@ -97,18 +97,18 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/a/tsconfig.json: - {"pollingInterval":250} -/a/a.ts: - {"pollingInterval":250} -/a/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/tsconfig.json: + {} +/a/a.ts: + {} +/a/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a: @@ -150,18 +150,18 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/a/tsconfig.json: - {"pollingInterval":250} -/a/a.ts: - {"pollingInterval":250} -/a/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/tsconfig.json: + {} +/a/a.ts: + {} +/a/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a: 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 b813b2f4f196c..a8b71755add0e 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 @@ -57,22 +57,22 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: +/a/b/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/project/tsconfig.json: - {"pollingInterval":250} + {} /a/b/output/anotherdependency/file1.d.ts: - {"pollingInterval":250} + {} /a/b/dependencies/file2.d.ts: - {"pollingInterval":250} + {} /a/b/project/src/main.ts: - {"pollingInterval":250} + {} /a/b/project/src/main2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 8d79177052e04..c223f8024acf8 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 @@ -67,22 +67,22 @@ Shape signatures in builder refreshed for:: /a/b/project/src/main2.ts (used version) PolledWatches:: +/a/b/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/project/tsconfig.json: - {"pollingInterval":250} + {} /a/b/output/anotherdependency/file1.d.ts: - {"pollingInterval":250} + {} /a/b/dependencies/file2.d.ts: - {"pollingInterval":250} + {} /a/b/project/src/main.ts: - {"pollingInterval":250} + {} /a/b/project/src/main2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 33e6c5ef6581e..aec1a8a667a73 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 @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /a/rootfolder/project/scripts/typescript.ts (used version) PolledWatches:: -/a/rootfolder/project/tsconfig.json: - {"pollingInterval":250} -/a/rootfolder/project/scripts/javascript.js: - {"pollingInterval":250} -/a/rootfolder/project/scripts/typescript.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/rootfolder/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/rootfolder/project/tsconfig.json: + {} +/a/rootfolder/project/scripts/javascript.js: + {} +/a/rootfolder/project/scripts/typescript.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/rootfolder/project/scripts: @@ -111,18 +111,18 @@ Shape signatures in builder refreshed for:: /a/rootfolder/project/scripts/javascript.js (computed .d.ts) PolledWatches:: -/a/rootfolder/project/tsconfig.json: - {"pollingInterval":250} -/a/rootfolder/project/scripts/javascript.js: - {"pollingInterval":250} -/a/rootfolder/project/scripts/typescript.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/rootfolder/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/rootfolder/project/tsconfig.json: + {} +/a/rootfolder/project/scripts/javascript.js: + {} +/a/rootfolder/project/scripts/typescript.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/rootfolder/project/scripts: 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 1d2fea00bb1cf..78ce290110e6b 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 @@ -66,22 +66,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -203,22 +203,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -332,22 +332,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -461,22 +461,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 42017b286c6b8..17e6298145fac 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 @@ -66,22 +66,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -134,22 +134,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -194,22 +194,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -254,22 +254,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 57c4818704c7e..e03bc6c148fc3 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 @@ -66,20 +66,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -235,20 +235,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -391,20 +391,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -546,20 +546,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 110b1f01d4334..737612684747d 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 @@ -66,20 +66,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -166,20 +166,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -244,20 +244,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -321,20 +321,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 ac9ef0ac66b03..620a39af46cbc 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 @@ -103,24 +103,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -361,24 +361,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -530,24 +530,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -696,24 +696,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 a50c35c130464..c45dcaf0609e9 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 @@ -103,24 +103,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -217,24 +217,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -290,24 +290,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -360,24 +360,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 aaddbcfbff9c4..3e24f9f905787 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 @@ -89,26 +89,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -378,26 +378,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -588,26 +588,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -794,26 +794,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 fbc00352d0cd3..c65e3c4431467 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 @@ -89,26 +89,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -264,26 +264,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -340,26 +340,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -412,26 +412,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 33581de99e4a8..753d8b11d6254 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 @@ -98,28 +98,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -419,28 +419,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/data2.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -648,28 +648,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -872,28 +872,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 9313d80d3ce26..970d07344f83c 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 @@ -98,28 +98,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -290,28 +290,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/data2.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -370,28 +370,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -445,28 +445,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 fac9306d0d93c..d6d7f1281c501 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 @@ -75,20 +75,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -205,20 +205,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -261,20 +261,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -397,20 +397,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -527,20 +527,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -581,20 +581,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -694,20 +694,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js index 1aea0ef4183b9..d66bc1a013f87 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js @@ -75,20 +75,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -129,20 +129,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -185,20 +185,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -263,20 +263,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -317,20 +317,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -371,20 +371,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -426,20 +426,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: 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 5ea9e3d9179fd..5f95ead03caa4 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 @@ -66,22 +66,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -205,22 +205,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -332,22 +332,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -459,22 +459,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 d55d568833b49..c620e0c74b63c 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 @@ -66,22 +66,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -138,22 +138,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -198,22 +198,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -258,22 +258,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 f05869aa161c7..566bb71d71a57 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 @@ -66,20 +66,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -243,20 +243,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -389,20 +389,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -535,20 +535,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 d2c20177a13e5..427c1a8d09a9c 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 @@ -66,20 +66,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -176,20 +176,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -255,20 +255,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -334,20 +334,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 b0491972a9aba..96d15c71c1bc2 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 @@ -103,24 +103,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -399,24 +399,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -639,24 +639,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -879,24 +879,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 cbc49e349d54c..58e992961fbe5 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 @@ -103,24 +103,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -257,24 +257,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -355,24 +355,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -453,24 +453,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 70324f67c8a11..c55624fd5f84a 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 @@ -89,26 +89,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -393,26 +393,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -578,26 +578,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -763,26 +763,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 e28593c0f893b..cb9d2287835ac 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 @@ -89,26 +89,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -281,26 +281,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -354,26 +354,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -427,26 +427,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 aed9f2e2be832..7362ec3dee447 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 @@ -98,28 +98,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -441,28 +441,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -644,28 +644,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -847,28 +847,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 2a30d1ea6ec3c..3e583ce69ed6a 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 @@ -98,28 +98,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -314,28 +314,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -390,28 +390,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -466,28 +466,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/public.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 61a1ac39540f5..2bdcb7d486e40 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 @@ -75,20 +75,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -206,20 +206,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -262,20 +262,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -413,20 +413,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -544,20 +544,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -598,20 +598,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -713,20 +713,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js index 40518aa53c2ea..2bda15b03c628 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js @@ -75,20 +75,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -129,20 +129,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -185,20 +185,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -277,20 +277,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -331,20 +331,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -385,20 +385,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -441,20 +441,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: 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 9a7f348fbce0d..32693b4fe226d 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 @@ -66,22 +66,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -207,22 +207,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -347,22 +347,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -480,22 +480,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 758fe39faa822..da9dffe83cfb1 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 @@ -66,22 +66,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -141,22 +141,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -203,22 +203,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -270,22 +270,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 de0d7c8e08166..8a9613825d817 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 @@ -66,20 +66,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -232,20 +232,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -382,20 +382,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -527,20 +527,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 fe2bc90b3f9c4..0ff97834473d9 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 @@ -66,20 +66,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -166,20 +166,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -241,20 +241,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -320,20 +320,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 d425eae3adfe2..d43112120cd39 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 @@ -103,24 +103,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -358,24 +358,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -544,24 +544,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -761,24 +761,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 b5b2bb3edbd78..42413f2f71095 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 @@ -103,24 +103,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -217,24 +217,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -310,24 +310,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -386,24 +386,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 ed46928ac19b0..a9600db038fbd 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 @@ -89,26 +89,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -375,26 +375,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -584,26 +584,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -775,26 +775,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 191a4d2fe377b..1d6f2d38f8574 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 @@ -89,26 +89,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -264,26 +264,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -342,26 +342,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -422,26 +422,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 e7622b9c3105d..91a05dc96bcef 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 @@ -98,28 +98,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -416,28 +416,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/data2.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -646,28 +646,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -857,28 +857,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 1bf750828421a..f2865d504c7f4 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 @@ -98,28 +98,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -290,28 +290,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/data2.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -374,28 +374,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -459,28 +459,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 0e5d3e4f3f392..b26fe57c145e6 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 @@ -75,20 +75,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -204,20 +204,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -260,20 +260,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -395,20 +395,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -524,20 +524,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -578,20 +578,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -690,20 +690,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js index d6b2f08446960..483578915d3a3 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js @@ -75,20 +75,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -129,20 +129,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -185,20 +185,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -263,20 +263,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -317,20 +317,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -371,20 +371,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -426,20 +426,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: 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 ee3fceb96b34c..547979bb8a485 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 @@ -66,22 +66,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -211,22 +211,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -352,22 +352,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -486,22 +486,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 a33793db59cda..698f3fe39f54f 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 @@ -66,22 +66,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -145,22 +145,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -208,22 +208,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -276,22 +276,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 758eec3443458..313474acc3e76 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 @@ -66,20 +66,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -249,20 +249,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -409,20 +409,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -562,20 +562,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 ad486fa6c4c56..55e15361821dc 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 @@ -66,20 +66,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -183,20 +183,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -265,20 +265,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -352,20 +352,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 479e5f4f188b8..1697ffdeec3b4 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 @@ -103,24 +103,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -386,24 +386,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -586,24 +586,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -815,24 +815,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 d1fbf02f375ff..00d2f80b8eaf5 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 @@ -103,24 +103,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -245,24 +245,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -349,24 +349,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -437,24 +437,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 f6e48d064f4e8..241a4d48f5455 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 @@ -89,26 +89,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -406,26 +406,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -625,26 +625,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -827,26 +827,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 ce5ba9a6e1b8c..0e9101fc281c4 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 @@ -89,26 +89,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -295,26 +295,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -380,26 +380,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -471,26 +471,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 0022d156b8182..3ea8b160b569e 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 @@ -98,28 +98,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -456,28 +456,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -696,28 +696,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -919,28 +919,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 333d17d762267..06a828b3fbe68 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 @@ -98,28 +98,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -330,28 +330,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -421,28 +421,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -518,28 +518,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 826a73575a25f..f3f271e408e65 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 @@ -75,20 +75,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -205,20 +205,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -261,20 +261,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -411,20 +411,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -541,20 +541,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -595,20 +595,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -709,20 +709,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js index de9eed55601f4..b33198034eaf9 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js @@ -75,20 +75,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -129,20 +129,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -185,20 +185,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -277,20 +277,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -331,20 +331,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -385,20 +385,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -441,20 +441,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: 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 f5b491c4b1e12..2c395ebfc64a9 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 @@ -66,22 +66,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -207,22 +207,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -347,22 +347,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -480,22 +480,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 16164b04b1c96..38c9825f6779a 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 @@ -66,22 +66,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -141,22 +141,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -203,22 +203,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -270,22 +270,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 2d28604c9f842..3f8f454ca0abf 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 @@ -66,20 +66,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -232,20 +232,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -383,20 +383,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -527,20 +527,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 75bcbc34089d1..08cb8cfaebe82 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 @@ -66,20 +66,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -166,20 +166,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -239,20 +239,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -317,20 +317,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 e0309bb5a5387..40b35ab01072e 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 @@ -103,24 +103,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -358,24 +358,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -545,24 +545,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -761,24 +761,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 e2885e9a75990..9ecdcbe6f1993 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 @@ -103,24 +103,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -217,24 +217,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -308,24 +308,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -383,24 +383,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 f81729572f9b9..edec307ff8d34 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 @@ -89,26 +89,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -375,26 +375,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -582,26 +582,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -772,26 +772,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 ffa33a1266fbb..2173ee9c93cb9 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 @@ -89,26 +89,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -264,26 +264,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -337,26 +337,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -416,26 +416,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 a74535af93b74..cd237c96944e0 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 @@ -98,28 +98,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -416,28 +416,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -643,28 +643,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -853,28 +853,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 dda42baab936e..0a3a36dd8ff68 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 @@ -98,28 +98,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -290,28 +290,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -368,28 +368,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -452,28 +452,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 f1141fb53dc8e..173cad06584a6 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 @@ -75,20 +75,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -204,20 +204,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -260,20 +260,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -395,20 +395,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -524,20 +524,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -578,20 +578,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -690,20 +690,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js index 40c84e60e6126..0b5a5d297e865 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js @@ -75,20 +75,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -129,20 +129,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -185,20 +185,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -263,20 +263,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -317,20 +317,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -371,20 +371,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -426,20 +426,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: 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 a776732af743d..2911c54c3db50 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 @@ -66,22 +66,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -211,22 +211,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -352,22 +352,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -486,22 +486,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 e2f7fbdd86d6d..f66e7c0f22494 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 @@ -66,22 +66,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -145,22 +145,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -208,22 +208,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -276,22 +276,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/c.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/b.d.ts: + {} +/user/username/projects/myproject/c.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 252fb14ea800a..4a132cd5a8a0e 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 @@ -66,20 +66,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -249,20 +249,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -408,20 +408,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -560,20 +560,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 af1b341d92267..28f03a03000ca 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 @@ -66,20 +66,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -183,20 +183,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -264,20 +264,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -350,20 +350,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 60beaaed165df..961009d2cc3fc 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 @@ -103,24 +103,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -388,24 +388,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -590,24 +590,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -821,24 +821,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 d26d88e0ed788..fedec44ab704c 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 @@ -103,24 +103,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -247,24 +247,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -353,24 +353,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -443,24 +443,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/c.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/e.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 b047395e54c36..ef412f82f5a7f 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 @@ -89,26 +89,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -406,26 +406,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -624,26 +624,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -825,26 +825,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 047ffe7acef72..2ad15acfc4779 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 @@ -89,26 +89,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -295,26 +295,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -379,26 +379,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -469,26 +469,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 4ae39cf717c6e..c3e68515ab7fe 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 @@ -98,28 +98,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -456,28 +456,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/data2.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -695,28 +695,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/data2.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -917,28 +917,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/data2.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 06bedaa8c8c36..0cd0a607f3924 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 @@ -98,28 +98,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -330,28 +330,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/data2.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -420,28 +420,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/data2.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: @@ -516,28 +516,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/data2.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/app.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/public.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib1/tools/tools.interface.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib2/data2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 a119a584dec57..fb739948fa60d 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 @@ -75,20 +75,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -205,20 +205,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -261,20 +261,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -411,20 +411,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -541,20 +541,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -595,20 +595,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -709,20 +709,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: diff --git a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js index 252104873b14f..d030833345579 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js @@ -75,20 +75,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -129,20 +129,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -185,20 +185,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -277,20 +277,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -331,20 +331,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -385,20 +385,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: @@ -441,20 +441,20 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/noemitonerror/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/noemitonerror/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/shared/types/db.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/noemitonerror/src/other.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/noemitonerror: diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/jsxImportSource-option-changed.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/jsxImportSource-option-changed.js index ddf7e014d8c96..7bf616fefa4b9 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/jsxImportSource-option-changed.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/jsxImportSource-option-changed.js @@ -78,20 +78,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/index.tsx (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/react/jsx-runtime/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/index.tsx: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/react/package.json: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: 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 6ff6a30c7d913..c43bd8e841a78 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 @@ -66,18 +66,18 @@ c:/project/a.ts (used version) c:/project/b.ts (used version) PolledWatches:: -c:/project/tsconfig.json: - {"pollingInterval":250} -c:/project/a.ts: - {"pollingInterval":250} -c:/project/b.ts: - {"pollingInterval":250} -c:/a/lib/lib.d.ts: - {"pollingInterval":250} c:/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +c:/project/tsconfig.json: + {} +c:/project/a.ts: + {} +c:/project/b.ts: + {} +c:/a/lib/lib.d.ts: + {} FsWatchesRecursive:: c:/project: @@ -147,18 +147,18 @@ c:/project/a.ts (computed .d.ts) c:/project/b.ts (computed .d.ts) PolledWatches:: -c:/project/tsconfig.json: - {"pollingInterval":250} -c:/project/a.ts: - {"pollingInterval":250} -c:/project/b.ts: - {"pollingInterval":250} -c:/a/lib/lib.d.ts: - {"pollingInterval":250} c:/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +c:/project/tsconfig.json: + {} +c:/project/a.ts: + {} +c:/project/b.ts: + {} +c:/a/lib/lib.d.ts: + {} FsWatchesRecursive:: c:/project: 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 3d719e35ec026..efefb2e59f5d2 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 @@ -66,18 +66,18 @@ c:/project/a.ts (used version) c:/project/b.ts (used version) PolledWatches:: -c:/project/tsconfig.json: - {"pollingInterval":250} -c:/project/a.ts: - {"pollingInterval":250} -c:/project/b.ts: - {"pollingInterval":250} -c:/a/lib/lib.d.ts: - {"pollingInterval":250} c:/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +c:/project/tsconfig.json: + {} +c:/project/a.ts: + {} +c:/project/b.ts: + {} +c:/a/lib/lib.d.ts: + {} FsWatchesRecursive:: c:/project: @@ -147,18 +147,18 @@ c:/project/a.ts (computed .d.ts) c:/project/b.ts (computed .d.ts) PolledWatches:: -c:/project/tsconfig.json: - {"pollingInterval":250} -c:/project/a.ts: - {"pollingInterval":250} -c:/project/b.ts: - {"pollingInterval":250} -c:/a/lib/lib.d.ts: - {"pollingInterval":250} c:/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +c:/project/tsconfig.json: + {} +c:/project/a.ts: + {} +c:/project/b.ts: + {} +c:/a/lib/lib.d.ts: + {} FsWatchesRecursive:: c:/project: 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 dd0360ecf230d..6e3dc5e3f8a62 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 @@ -63,20 +63,20 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/xy/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/link/a.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -173,20 +173,20 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/xy/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/link/a.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 fa61e4c157c7c..be68d551e61a0 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 @@ -72,20 +72,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/xy.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/link.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -166,20 +166,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/xy.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/link.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 627872249dd1a..7ce89d3090915 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 @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/another.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/another.ts: - {"pollingInterval":250} -/user/username/projects/myproject/logger.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/another.ts: + {} +/user/username/projects/myproject/logger.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -127,18 +127,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/another.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/another.ts: - {"pollingInterval":250} -/user/username/projects/myproject/logger.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/another.ts: + {} +/user/username/projects/myproject/logger.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 8ffc5523766c1..8dd60159214c4 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 @@ -63,20 +63,20 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/xy/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/link/a.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -173,20 +173,20 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/xy/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/link/a.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 2259ba75ba24d..879eb691194ab 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 @@ -72,20 +72,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/xy.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/link.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -166,20 +166,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/xy.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/link.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 abdc3a91b2866..ea946bbbcf3db 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 @@ -67,22 +67,22 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/b.ts: - {"pollingInterval":250} /user/username/projects/myproject/yx: {"pollingInterval":500} -/user/username/projects/myproject/link/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/xy/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/b.ts: + {} +/user/username/projects/myproject/link/a.ts: + {} +/user/username/projects/myproject/xy/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -183,22 +183,22 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/b.ts: - {"pollingInterval":250} /user/username/projects/myproject/yx: {"pollingInterval":500} -/user/username/projects/myproject/link/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/xy/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/b.ts: + {} +/user/username/projects/myproject/link/a.ts: + {} +/user/username/projects/myproject/xy/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 fc5a7c8a714d2..5cadf905e5b7e 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 @@ -76,24 +76,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/xy.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.ts: - {"pollingInterval":250} /user/username/projects/myproject/yx: {"pollingInterval":500} -/user/username/projects/myproject/link.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/xy.ts: + {} +/user/username/projects/myproject/b.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/link.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -176,24 +176,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/xy.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/xy.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.ts: - {"pollingInterval":250} /user/username/projects/myproject/yx: {"pollingInterval":500} -/user/username/projects/myproject/link.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/xy.ts: + {} +/user/username/projects/myproject/b.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/link.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 cb4873bd98028..b3b18bc20b919 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 @@ -71,20 +71,20 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/xy/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/link/a.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -189,20 +189,20 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/xy/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/link/a.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 c591a5836a38d..b948180f9d6ee 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 @@ -80,20 +80,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/xy.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/link.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -182,20 +182,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/xy.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/link.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 6b48cbe015733..afcf7b20e772c 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 @@ -71,20 +71,20 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/xy/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/link/a.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -189,20 +189,20 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/xy/a.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/link/a.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 fb950ca2364f6..7174f39645c04 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 @@ -80,20 +80,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/xy.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/link.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -182,20 +182,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/xy.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/b.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/link.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 e05d219d95d98..261cd6e5a8d56 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 @@ -94,20 +94,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/moduleb.ts (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/modulea.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/modulec.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/moduleb.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -203,20 +203,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/modulea.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/modulea.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/modulec.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/moduleb.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 17e086e561767..4bc312b8d6f46 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 @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/another.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/another.ts: - {"pollingInterval":250} -/user/username/projects/myproject/logger.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/another.ts: + {} +/user/username/projects/myproject/logger.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -123,18 +123,18 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/another.ts: - {"pollingInterval":250} -/user/username/projects/myproject/logger.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/another.ts: + {} +/user/username/projects/myproject/logger.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 79d1e91715ce6..c11cbb3aa7acf 100644 --- a/tests/baselines/reference/tscWatch/incremental/editing-module-augmentation-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/editing-module-augmentation-watch.js @@ -58,20 +58,20 @@ 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: + {"pollingInterval":500} + +FsWatches:: /users/username/projects/project/tsconfig.json: - {"pollingInterval":250} + {} /users/username/projects/project/src/index.ts: - {"pollingInterval":250} + {} /users/username/projects/project/node_modules/classnames/index.d.ts: - {"pollingInterval":250} + {} /users/username/projects/project/src/types/classnames.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /users/username/projects/project/src: @@ -201,20 +201,20 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/src/index.ts (computed .d.ts) PolledWatches:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /users/username/projects/project/tsconfig.json: - {"pollingInterval":250} + {} /users/username/projects/project/src/index.ts: - {"pollingInterval":250} + {} /users/username/projects/project/node_modules/classnames/index.d.ts: - {"pollingInterval":250} + {} /users/username/projects/project/src/types/classnames.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /users/username/projects/project/src: 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 efbeec085c2ad..e0cdbebca1680 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 @@ -55,20 +55,20 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (used version) PolledWatches:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /users/username/projects/project/tsconfig.json: - {"pollingInterval":250} + {} /users/username/projects/project/index.tsx: - {"pollingInterval":250} + {} /users/username/projects/project/node_modules/tslib/index.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /users/username/projects/project/node_modules/tslib/package.json: - {"pollingInterval":250} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /users/username/projects/project/node_modules: @@ -122,16 +122,16 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (used version) PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":250} -/users/username/projects/project/index.tsx: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/index.tsx: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /users/username/projects/project/node_modules: 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 92ebbdc2c3821..9ec4a354cedcc 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 @@ -77,22 +77,22 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.ts (used version) PolledWatches:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /users/username/projects/project/tsconfig.json: - {"pollingInterval":250} + {} /users/username/projects/project/a.ts: - {"pollingInterval":250} + {} /users/username/projects/project/b.ts: - {"pollingInterval":250} + {} /users/username/projects/project/c.ts: - {"pollingInterval":250} + {} /users/username/projects/project/index.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -273,22 +273,22 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/b.ts (used version) PolledWatches:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /users/username/projects/project/tsconfig.json: - {"pollingInterval":250} + {} /users/username/projects/project/a.ts: - {"pollingInterval":250} + {} /users/username/projects/project/b.ts: - {"pollingInterval":250} + {} /users/username/projects/project/c.ts: - {"pollingInterval":250} + {} /users/username/projects/project/index.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /users/username/projects/project: 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 2ee9ffeb90c1a..29173d1b4e598 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 @@ -51,18 +51,18 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (used version) PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":250} -/users/username/projects/project/index.tsx: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /users/username/projects/project/node_modules: {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/index.tsx: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -175,20 +175,20 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (computed .d.ts) PolledWatches:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /users/username/projects/project/tsconfig.json: - {"pollingInterval":250} + {} /users/username/projects/project/index.tsx: - {"pollingInterval":250} + {} /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /users/username/projects/project/node_modules/react/package.json: - {"pollingInterval":250} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /users/username/projects/project/node_modules: 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 299ac5c030b31..a6fe749c7b576 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 @@ -66,20 +66,20 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (used version) PolledWatches:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /users/username/projects/project/tsconfig.json: - {"pollingInterval":250} + {} /users/username/projects/project/index.tsx: - {"pollingInterval":250} + {} /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /users/username/projects/project/node_modules/react/package.json: - {"pollingInterval":250} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /users/username/projects/project/node_modules: @@ -188,16 +188,16 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (computed .d.ts) PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":250} -/users/username/projects/project/index.tsx: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/index.tsx: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /users/username/projects/project/node_modules: 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 24dad1c45fbd9..f080a483164ce 100644 --- a/tests/baselines/reference/tscWatch/incremental/jsxImportSource-option-changed-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/jsxImportSource-option-changed-watch.js @@ -89,20 +89,20 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (used version) PolledWatches:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /users/username/projects/project/tsconfig.json: - {"pollingInterval":250} + {} /users/username/projects/project/index.tsx: - {"pollingInterval":250} + {} /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /users/username/projects/project/node_modules/react/package.json: - {"pollingInterval":250} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /users/username/projects/project/node_modules: @@ -223,20 +223,20 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (computed .d.ts) PolledWatches:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /users/username/projects/project/tsconfig.json: - {"pollingInterval":250} + {} /users/username/projects/project/index.tsx: - {"pollingInterval":250} + {} /users/username/projects/project/node_modules/preact/jsx-runtime/index.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /users/username/projects/project/node_modules/preact/package.json: - {"pollingInterval":250} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /users/username/projects/project/node_modules: 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 43ae296b72ee5..8f5f0c909830c 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 @@ -55,18 +55,18 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (used version) PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":250} -/users/username/projects/project/file1.ts: - {"pollingInterval":250} -/users/username/projects/project/file2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/file1.ts: + {} +/users/username/projects/project/file2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -181,18 +181,18 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":250} -/users/username/projects/project/file1.ts: - {"pollingInterval":250} -/users/username/projects/project/file2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/file1.ts: + {} +/users/username/projects/project/file2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /users/username/projects/project: 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 90376eaddab8e..9b6c1dbff1a13 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 @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (used version) PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":250} -/users/username/projects/project/file1.ts: - {"pollingInterval":250} -/users/username/projects/project/file2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/file1.ts: + {} +/users/username/projects/project/file2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -159,18 +159,18 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":250} -/users/username/projects/project/file1.ts: - {"pollingInterval":250} -/users/username/projects/project/file2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/file1.ts: + {} +/users/username/projects/project/file2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /users/username/projects/project: 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 3ea9744c8d374..82f67bfc5e972 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 @@ -44,18 +44,18 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":250} -/users/username/projects/project/file1.ts: - {"pollingInterval":250} -/users/username/projects/project/file2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/file1.ts: + {} +/users/username/projects/project/file2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /users/username/projects/project: 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 c0ab4a1140c40..f0cb83cf3174c 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 @@ -55,18 +55,18 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (used version) PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":250} -/users/username/projects/project/file1.ts: - {"pollingInterval":250} -/users/username/projects/project/file2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/file1.ts: + {} +/users/username/projects/project/file2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -173,18 +173,18 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":250} -/users/username/projects/project/file1.ts: - {"pollingInterval":250} -/users/username/projects/project/file2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/file1.ts: + {} +/users/username/projects/project/file2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /users/username/projects/project: 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 632e08bb1cd0b..e9bac5fc2e982 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 @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (used version) PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":250} -/users/username/projects/project/file1.ts: - {"pollingInterval":250} -/users/username/projects/project/file2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/file1.ts: + {} +/users/username/projects/project/file2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -151,18 +151,18 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":250} -/users/username/projects/project/file1.ts: - {"pollingInterval":250} -/users/username/projects/project/file2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/file1.ts: + {} +/users/username/projects/project/file2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /users/username/projects/project: 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 eb062ae385521..5c03116798f24 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 @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (used version) PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":250} -/users/username/projects/project/file1.ts: - {"pollingInterval":250} -/users/username/projects/project/file2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/file1.ts: + {} +/users/username/projects/project/file2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -151,18 +151,18 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":250} -/users/username/projects/project/file1.ts: - {"pollingInterval":250} -/users/username/projects/project/file2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/file1.ts: + {} +/users/username/projects/project/file2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tscWatch/incremental/tsbuildinfo-has-error.js b/tests/baselines/reference/tscWatch/incremental/tsbuildinfo-has-error.js index 3ea9c3ce5ccea..51aac59a942b5 100644 --- a/tests/baselines/reference/tscWatch/incremental/tsbuildinfo-has-error.js +++ b/tests/baselines/reference/tscWatch/incremental/tsbuildinfo-has-error.js @@ -47,16 +47,16 @@ Shape signatures in builder refreshed for:: /src/project/main.ts (used version) PolledWatches:: -/src/project/tsconfig.json: - {"pollingInterval":250} -/src/project/main.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /src/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/src/project/tsconfig.json: + {} +/src/project/main.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /src/project: 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 72c20546b75db..29d2bfca174b6 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 @@ -52,18 +52,18 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.ts (used version) PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":250} -/users/username/projects/project/globals.d.ts: - {"pollingInterval":250} -/users/username/projects/project/index.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/globals.d.ts: + {} +/users/username/projects/project/index.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /users/username/projects/project: @@ -149,16 +149,16 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":250} -/users/username/projects/project/index.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/index.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tscWatch/incremental/with---out-watch.js b/tests/baselines/reference/tscWatch/incremental/with---out-watch.js index ca7f8c1c82341..1d01283f8c0a2 100644 --- a/tests/baselines/reference/tscWatch/incremental/with---out-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/with---out-watch.js @@ -44,18 +44,18 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/users/username/projects/project/tsconfig.json: - {"pollingInterval":250} -/users/username/projects/project/file1.ts: - {"pollingInterval":250} -/users/username/projects/project/file2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/file1.ts: + {} +/users/username/projects/project/file2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /users/username/projects/project: diff --git a/tests/baselines/reference/tscWatch/moduleResolution/diagnostics-from-cache.js b/tests/baselines/reference/tscWatch/moduleResolution/diagnostics-from-cache.js index 604c84f73f948..72ef90eca8fca 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/diagnostics-from-cache.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/diagnostics-from-cache.js @@ -61,18 +61,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/index.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/index.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/package.json: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/index.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 81fcd9657c35d..2f9a5264abbac 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,24 +99,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (used version) PolledWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/filea.ts: - {"pollingInterval":250} -/a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"pollingInterval":250} -/user/username/projects/myproject/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/src/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/src/tsconfig.json: + {} +/user/username/projects/myproject/src/filea.ts: + {} /user/username/projects/myproject/src: {} +/a/lib/lib.es2016.full.d.ts: + {} +/user/username/projects/myproject/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -206,16 +206,8 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/filea.ts: - {"pollingInterval":250} -/a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"pollingInterval":250} -/user/username/projects/myproject/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/src/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: @@ -224,8 +216,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/src/tsconfig.json: + {} +/user/username/projects/myproject/src/filea.ts: + {} /user/username/projects/myproject/src: {} +/a/lib/lib.es2016.full.d.ts: + {} +/user/username/projects/myproject/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -312,24 +312,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/filea.ts: - {"pollingInterval":250} -/a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"pollingInterval":250} -/user/username/projects/myproject/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/src/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/src/tsconfig.json: + {} +/user/username/projects/myproject/src/filea.ts: + {} /user/username/projects/myproject/src: {} +/a/lib/lib.es2016.full.d.ts: + {} +/user/username/projects/myproject/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -425,16 +425,8 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/filea.ts: - {"pollingInterval":250} -/a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"pollingInterval":250} -/user/username/projects/myproject/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/src/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: @@ -442,11 +434,19 @@ PolledWatches:: /user/username/projects/myproject/src/fileb.mjs: {"pollingInterval":500} /user/username/projects/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} FsWatches:: +/user/username/projects/myproject/src/tsconfig.json: + {} +/user/username/projects/myproject/src/filea.ts: + {} /user/username/projects/myproject/src: {} +/a/lib/lib.es2016.full.d.ts: + {} +/user/username/projects/myproject/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -519,16 +519,8 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/filea.ts: - {"pollingInterval":250} -/a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"pollingInterval":250} -/user/username/projects/myproject/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/src/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: @@ -537,8 +529,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/src/tsconfig.json: + {} +/user/username/projects/myproject/src/filea.ts: + {} /user/username/projects/myproject/src: {} +/a/lib/lib.es2016.full.d.ts: + {} +/user/username/projects/myproject/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -609,16 +609,8 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/filea.ts: - {"pollingInterval":250} -/a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"pollingInterval":250} -/user/username/projects/myproject/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/src/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: @@ -626,11 +618,19 @@ PolledWatches:: /user/username/projects/myproject/src/fileb.mjs: {"pollingInterval":500} /user/username/projects/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} FsWatches:: +/user/username/projects/myproject/src/tsconfig.json: + {} +/user/username/projects/myproject/src/filea.ts: + {} /user/username/projects/myproject/src: {} +/a/lib/lib.es2016.full.d.ts: + {} +/user/username/projects/myproject/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: 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 f6f6f5cdc808e..c0aab2d6e28fc 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,26 +106,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (used version) PolledWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/filea.ts: - {"pollingInterval":250} /user/username/projects/myproject/src/fileb.mjs: {"pollingInterval":500} -/a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"pollingInterval":250} -/user/username/projects/myproject/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/src/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/src/tsconfig.json: + {} +/user/username/projects/myproject/src/filea.ts: + {} /user/username/projects/myproject/src: {} +/a/lib/lib.es2016.full.d.ts: + {} +/user/username/projects/myproject/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -212,24 +212,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/filea.ts: - {"pollingInterval":250} -/a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"pollingInterval":250} -/user/username/projects/myproject/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/src/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/src/tsconfig.json: + {} +/user/username/projects/myproject/src/filea.ts: + {} /user/username/projects/myproject/src: {} +/a/lib/lib.es2016.full.d.ts: + {} +/user/username/projects/myproject/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -319,16 +319,8 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/filea.ts: - {"pollingInterval":250} -/a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"pollingInterval":250} -/user/username/projects/myproject/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/src/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: @@ -337,8 +329,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/src/tsconfig.json: + {} +/user/username/projects/myproject/src/filea.ts: + {} /user/username/projects/myproject/src: {} +/a/lib/lib.es2016.full.d.ts: + {} +/user/username/projects/myproject/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -416,16 +416,8 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/filea.ts: - {"pollingInterval":250} -/a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"pollingInterval":250} -/user/username/projects/myproject/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/src/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: @@ -433,11 +425,19 @@ PolledWatches:: /user/username/projects/myproject/src/fileb.mjs: {"pollingInterval":500} /user/username/projects/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} FsWatches:: +/user/username/projects/myproject/src/tsconfig.json: + {} +/user/username/projects/myproject/src/filea.ts: + {} /user/username/projects/myproject/src: {} +/a/lib/lib.es2016.full.d.ts: + {} +/user/username/projects/myproject/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -518,24 +518,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/filea.ts: - {"pollingInterval":250} -/a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"pollingInterval":250} -/user/username/projects/myproject/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/src/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/src/tsconfig.json: + {} +/user/username/projects/myproject/src/filea.ts: + {} /user/username/projects/myproject/src: {} +/a/lib/lib.es2016.full.d.ts: + {} +/user/username/projects/myproject/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -631,16 +631,8 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/filea.ts: - {"pollingInterval":250} -/a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/src/package.json: - {"pollingInterval":250} -/user/username/projects/myproject/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/src/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: @@ -648,11 +640,19 @@ PolledWatches:: /user/username/projects/myproject/src/fileb.mjs: {"pollingInterval":500} /user/username/projects/package.json: - {"pollingInterval":250} + {"pollingInterval":2000} FsWatches:: +/user/username/projects/myproject/src/tsconfig.json: + {} +/user/username/projects/myproject/src/filea.ts: + {} /user/username/projects/myproject/src: {} +/a/lib/lib.es2016.full.d.ts: + {} +/user/username/projects/myproject/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: 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 1732ffec511c5..93c3f3fcb4802 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 @@ -102,22 +102,10 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/pkg1/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/pkg2/build/index.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/pkg2/build/const.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/pkg2/package.json: - {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: @@ -126,6 +114,18 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/packages/pkg1/tsconfig.json: + {} +/user/username/projects/myproject/packages/pkg1/index.ts: + {} +/user/username/projects/myproject/packages/pkg2/build/index.d.ts: + {} +/user/username/projects/myproject/packages/pkg2/build/const.d.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/packages/pkg2/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg2: @@ -206,28 +206,28 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/pkg1/index.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/pkg2/package.json: - {"pollingInterval":250} /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: {"pollingInterval":500} -/user/username/projects/myproject/packages/pkg2/build/other.d.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/packages/pkg1/tsconfig.json: + {} +/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/pkg2/build/other.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: @@ -309,30 +309,30 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/packages/pkg1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/pkg1/index.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/pkg1/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/pkg2/package.json: - {"pollingInterval":250} /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: {"pollingInterval":500} -/user/username/projects/myproject/packages/pkg2/build/index.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/pkg2/build/const.d.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/packages/pkg1/tsconfig.json: + {} +/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/pkg2/build/index.d.ts: + {} +/user/username/projects/myproject/packages/pkg2/build/const.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: 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 a1939153637f7..21bcc55018618 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 @@ -55,18 +55,18 @@ Shape signatures in builder refreshed for:: /project/src/index.ts (used version) PolledWatches:: -/project/tsconfig.json: - {"pollingInterval":250} -/project/src/deps.d.ts: - {"pollingInterval":250} -/project/src/index.ts: - {"pollingInterval":250} -/a/lib/lib.es2020.full.d.ts: - {"pollingInterval":250} /project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/project/tsconfig.json: + {} +/project/src/deps.d.ts: + {} +/project/src/index.ts: + {} +/a/lib/lib.es2020.full.d.ts: + {} FsWatchesRecursive:: /project: @@ -111,18 +111,18 @@ Shape signatures in builder refreshed for:: /project/src/index.ts (computed .d.ts) PolledWatches:: -/project/tsconfig.json: - {"pollingInterval":250} -/project/src/deps.d.ts: - {"pollingInterval":250} -/project/src/index.ts: - {"pollingInterval":250} -/a/lib/lib.es2020.full.d.ts: - {"pollingInterval":250} /project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/project/tsconfig.json: + {} +/project/src/deps.d.ts: + {} +/project/src/index.ts: + {} +/a/lib/lib.es2020.full.d.ts: + {} FsWatchesRecursive:: /project: 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 023875a9b5daa..12b87072f115e 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 @@ -59,16 +59,16 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/app.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/app.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: 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 3041553402057..f0fc2c1e5e0c6 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 @@ -65,16 +65,16 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/app.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/app.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: @@ -135,16 +135,16 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/app.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/app.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: 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 bcff57fa9813b..d4885fc53ad1c 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 @@ -54,16 +54,16 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/app.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/app.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: 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 1a1b41e4161aa..628716cd6be04 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 @@ -44,16 +44,16 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/app.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/app.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: @@ -102,16 +102,16 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/app.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/app.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: @@ -150,16 +150,16 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/app.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/app.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: 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 415f4e724d1c6..514dcf029de41 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 @@ -44,14 +44,14 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) PolledWatches:: + +FsWatches:: /tsconfig.json: - {"pollingInterval":250} + {} /a.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /: @@ -98,14 +98,14 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /tsconfig.json: - {"pollingInterval":250} + {} /a.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /: @@ -143,14 +143,14 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /tsconfig.json: - {"pollingInterval":250} + {} /a.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /: 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 81ebe8f766f96..65fd9000e8c0a 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 @@ -44,16 +44,16 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/commonfile1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: @@ -99,18 +99,18 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (computed .d.ts) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} -/a/b/commonfile2.ts: - {"pollingInterval":250} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/commonfile1.ts: + {} +/a/lib/lib.d.ts: + {} +/a/b/commonfile2.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 4e894d376bf90..1a8824c3e0716 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 @@ -46,12 +46,12 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (used version) PolledWatches:: -/a/b/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/a/b/file1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a: @@ -99,14 +99,14 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /a/b/file1.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /a/b/modulefile.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: 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 b411e8f29b9a0..ca2f45984cba5 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 @@ -47,16 +47,16 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/f1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/f1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -100,18 +100,18 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (computed .d.ts) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/f1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} -/a/b/f2.ts: - {"pollingInterval":250} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/f1.ts: + {} +/a/lib/lib.d.ts: + {} +/a/b/f2.ts: + {} FsWatchesRecursive:: 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 6412c1f3fe796..5a33cc7f03814 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 @@ -44,16 +44,16 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/f1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/f1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: @@ -99,18 +99,18 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (computed .d.ts) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/f1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} -/a/b/f2.ts: - {"pollingInterval":250} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/f1.ts: + {} +/a/lib/lib.d.ts: + {} +/a/b/f2.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 386ffce3d21ef..aa4a12698a735 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 @@ -44,18 +44,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/project/file1.ts (used version) PolledWatches:: -/user/username/projects/myproject/project/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/project/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/project/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/project/tsconfig.json: + {} +/user/username/projects/myproject/project/file1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/project: @@ -101,20 +101,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/project/file2.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/project/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/project/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/project/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/project/file2.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/project/tsconfig.json: + {} +/user/username/projects/myproject/project/file1.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/project/file2.ts: + {} 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 6eedb990ad3a6..7b628852d3f06 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 @@ -44,16 +44,16 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/app.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/app.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 a91447e658f17..9d12369451bf7 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 @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/f1.ts: - {"pollingInterval":250} -/a/b/f2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/f1.ts: + {} +/a/b/f2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -104,18 +104,18 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/f1.ts: - {"pollingInterval":250} -/a/b/f2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/f1.ts: + {} +/a/b/f2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 bc3dfcbf39e8f..5aa99c3ff6961 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/change-module-to-none.js +++ b/tests/baselines/reference/tscWatch/programUpdates/change-module-to-none.js @@ -45,16 +45,16 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/f1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/f1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: @@ -104,16 +104,16 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/f1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/f1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: 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 91532cee6010c..22ef03f7bd580 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 @@ -56,14 +56,14 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) PolledWatches:: + +FsWatches:: /a/b/f1.ts: - {"pollingInterval":250} + {} /a/b/f2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -140,16 +140,16 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /a/b/f1.ts: - {"pollingInterval":250} + {} /a/b/f2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /a/c/f3.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: 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 14d1c5b9cbfc8..63705ca588a98 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 @@ -56,20 +56,20 @@ Shape signatures in builder refreshed for:: /a/c/f3.ts (used version) PolledWatches:: +/a/c/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/c/tsconfig.json: - {"pollingInterval":250} + {} /a/c/f2.ts: - {"pollingInterval":250} + {} /a/b/f1.ts: - {"pollingInterval":250} + {} /a/c/f3.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/c/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: 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 54804d4628a68..956f33d43fd32 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/config-file-is-deleted.js +++ b/tests/baselines/reference/tscWatch/programUpdates/config-file-is-deleted.js @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/f1.ts: - {"pollingInterval":250} -/a/b/f2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/f1.ts: + {} +/a/b/f2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: @@ -89,18 +89,18 @@ Output:: PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/f1.ts: - {"pollingInterval":250} -/a/b/f2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/f1.ts: + {} +/a/b/f2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: 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 84112ef59b883..85960ac0ae808 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 @@ -53,16 +53,16 @@ Shape signatures in builder refreshed for:: /src/app.ts (used version) PolledWatches:: -/src/tsconfig.json: - {"pollingInterval":250} -/src/app.ts: - {"pollingInterval":250} -/compiler/lib.es5.d.ts: - {"pollingInterval":250} /src/node_modules/@types: {"pollingInterval":500} FsWatches:: +/src/tsconfig.json: + {} +/src/app.ts: + {} +/compiler/lib.es5.d.ts: + {} FsWatchesRecursive:: /src: @@ -108,18 +108,18 @@ Shape signatures in builder refreshed for:: /src/app.ts (computed .d.ts) PolledWatches:: -/src/tsconfig.json: - {"pollingInterval":250} -/src/app.ts: - {"pollingInterval":250} -/compiler/lib.es5.d.ts: - {"pollingInterval":250} /src/node_modules/@types: {"pollingInterval":500} -/compiler/lib.es2015.promise.d.ts: - {"pollingInterval":250} FsWatches:: +/src/tsconfig.json: + {} +/src/app.ts: + {} +/compiler/lib.es5.d.ts: + {} +/compiler/lib.es2015.promise.d.ts: + {} FsWatchesRecursive:: /src: 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 36f4692024f7c..3c0b0f31eb9e2 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 @@ -62,18 +62,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/f2.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/f1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/f2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/f1.ts: + {} +/user/username/projects/myproject/f2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -191,20 +191,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/new-file.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/f1.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/f2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} + {} /user/username/projects/myproject/new-file.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -309,20 +309,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/f1.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/f1.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/f2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} + {} /user/username/projects/myproject/new-file.ts: - {"pollingInterval":250} - -FsWatches:: + {} 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 40d90f9366ebf..04bf91d49f66c 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 @@ -59,18 +59,18 @@ Shape signatures in builder refreshed for:: /a/b/d/f2.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/c/f1.ts: - {"pollingInterval":250} -/a/b/d/f2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/c/f1.ts: + {} +/a/b/d/f2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: diff --git a/tests/baselines/reference/tscWatch/programUpdates/create-watch-without-config-file.js b/tests/baselines/reference/tscWatch/programUpdates/create-watch-without-config-file.js index 3e59c1f096546..9c6f8b4bf2832 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/create-watch-without-config-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/create-watch-without-config-file.js @@ -60,14 +60,14 @@ Shape signatures in builder refreshed for:: /a/b/c/app.ts (used version) PolledWatches:: + +FsWatches:: /a/b/c/app.ts: - {"pollingInterval":250} + {} /a/b/c/module.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /a: diff --git a/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure-2.js b/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure-2.js index 0d6c327cf644f..760e633c61143 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure-2.js +++ b/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure-2.js @@ -53,16 +53,16 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) PolledWatches:: + +FsWatches:: /a/b/f1.ts: - {"pollingInterval":250} + {} /a/b/f2.ts: - {"pollingInterval":250} + {} /a/c/f3.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -149,14 +149,14 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /a/b/f1.ts: - {"pollingInterval":250} + {} /a/c/f3.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /a: diff --git a/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure.js b/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure.js index 6b2c406752fde..9a2ceb639cadc 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure.js +++ b/tests/baselines/reference/tscWatch/programUpdates/deleted-files-affect-project-structure.js @@ -53,16 +53,16 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) PolledWatches:: + +FsWatches:: /a/b/f1.ts: - {"pollingInterval":250} + {} /a/b/f2.ts: - {"pollingInterval":250} + {} /a/c/f3.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -148,12 +148,12 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (computed .d.ts) PolledWatches:: -/a/b/f1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/a/b/f1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a: 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 57e4811b6b5b1..24b13fc297506 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 @@ -56,18 +56,18 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile1.ts: - {"pollingInterval":250} -/a/b/commonfile2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/commonfile1.ts: + {} +/a/b/commonfile2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -113,22 +113,22 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/commonfile1.ts: - {"pollingInterval":250} + {} /a/b/commonfile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} + {} /a/b/second.tsconfig.json: - {"pollingInterval":250} + {} /a/b/first.tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -176,22 +176,22 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/commonfile1.ts: - {"pollingInterval":250} + {} /a/b/commonfile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} + {} /a/b/second.tsconfig.json: - {"pollingInterval":250} + {} /a/b/first.tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -237,22 +237,22 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/commonfile1.ts: - {"pollingInterval":250} + {} /a/b/commonfile2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/a/b/node_modules/@types: - {"pollingInterval":500} + {} /a/b/second.tsconfig.json: - {"pollingInterval":250} + {} /a/b/first.tsconfig.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -290,18 +290,18 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile1.ts: - {"pollingInterval":250} -/a/b/commonfile2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/commonfile1.ts: + {} +/a/b/commonfile2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 a9f5b9b1eb71e..d4deb7113f8c4 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 @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/f1.ts: - {"pollingInterval":250} -/a/b/f2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/f1.ts: + {} +/a/b/f2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -111,18 +111,18 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (computed .d.ts) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/f1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} /a/b/f2.ts: - {"pollingInterval":250} + {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/f1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 9f3b0cd7eaf1d..34ac47728afb3 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 @@ -56,18 +56,18 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile1.ts: - {"pollingInterval":250} -/a/b/commonfile2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/commonfile1.ts: + {} +/a/b/commonfile2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: 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 78da562679034..707a6169ad646 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/handle-recreated-files-correctly.js +++ b/tests/baselines/reference/tscWatch/programUpdates/handle-recreated-files-correctly.js @@ -56,18 +56,18 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile1.ts: - {"pollingInterval":250} -/a/b/commonfile2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/commonfile1.ts: + {} +/a/b/commonfile2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: @@ -123,18 +123,18 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (computed .d.ts) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile1.ts: - {"pollingInterval":250} -/a/b/commonfile2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/commonfile1.ts: + {} +/a/b/commonfile2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: @@ -180,16 +180,16 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (computed .d.ts) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/commonfile1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: @@ -238,18 +238,18 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (computed .d.ts) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} -/a/b/commonfile2.ts: - {"pollingInterval":250} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/commonfile1.ts: + {} +/a/lib/lib.d.ts: + {} +/a/b/commonfile2.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 3cc423f73bf56..c9be8259f5f22 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 @@ -52,14 +52,14 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) PolledWatches:: -/a/b/commonfile1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/commonfile2.ts: - {"pollingInterval":250} + {"pollingInterval":500} FsWatches:: +/a/b/commonfile1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -104,14 +104,14 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /a/b/commonfile1.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /a/b/commonfile2.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: 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 97e0955f647d8..dbca2804f1b3a 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 @@ -46,16 +46,16 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/app.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/app.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: diff --git a/tests/baselines/reference/tscWatch/programUpdates/non-existing-directories-listed-in-config-file-input-array-should-be-able-to-handle-@types-if-input-file-list-is-empty.js b/tests/baselines/reference/tscWatch/programUpdates/non-existing-directories-listed-in-config-file-input-array-should-be-able-to-handle-@types-if-input-file-list-is-empty.js index 73614e2890802..ea44a54abcb80 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/non-existing-directories-listed-in-config-file-input-array-should-be-able-to-handle-@types-if-input-file-list-is-empty.js +++ b/tests/baselines/reference/tscWatch/programUpdates/non-existing-directories-listed-in-config-file-input-array-should-be-able-to-handle-@types-if-input-file-list-is-empty.js @@ -49,10 +49,10 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/a/tsconfig.json: - {"pollingInterval":250} FsWatches:: +/a/tsconfig.json: + {} FsWatchesRecursive:: /a/node_modules/@types: 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 27b8dc2f65b5f..eb404dde0c76d 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 @@ -43,8 +43,6 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} /a/b/app: @@ -55,6 +53,8 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} FsWatchesRecursive:: 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 ed725b6e0e3f2..7dd759b4e9a9d 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 @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/file1.ts: - {"pollingInterval":250} -/a/b/modulefile.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/file1.ts: + {} +/a/b/modulefile.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: @@ -125,22 +125,22 @@ Shape signatures in builder refreshed for:: /a/b/modulefile1.ts (computed .d.ts) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} /a/b/modulefile: {"pollingInterval":500} -/a/b/modulefile1.ts: - {"pollingInterval":250} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/file1.ts: + {} +/a/lib/lib.d.ts: + {} /a/b: {} +/a/b/modulefile1.ts: + {} FsWatchesRecursive:: /a/b: @@ -192,18 +192,18 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (computed .d.ts) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} -/a/b/modulefile.ts: - {"pollingInterval":250} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/file1.ts: + {} +/a/lib/lib.d.ts: + {} +/a/b/modulefile.ts: + {} FsWatchesRecursive:: /a/b: 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 abf4e5c874f22..37677338b891d 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 @@ -47,14 +47,14 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (used version) PolledWatches:: + +FsWatches:: /a/b/file1.ts: - {"pollingInterval":250} + {} /a/b/modulefile.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -113,12 +113,12 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (computed .d.ts) PolledWatches:: -/a/b/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/a/b/file1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a: @@ -161,14 +161,14 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /a/b/file1.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /a/b/modulefile.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: 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 44d7cedf664a3..833b292ce3623 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 @@ -55,18 +55,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -124,18 +124,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 948d87b64fbb0..635a872ea6f6e 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 @@ -51,18 +51,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/myproject/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -122,18 +122,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/myproject/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 84b3ec9501f9d..3cbbec4a23623 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 @@ -44,18 +44,18 @@ Shape signatures in builder refreshed for:: /a/src/app.ts (used version) PolledWatches:: -/a/tsconfig.json: - {"pollingInterval":250} -/a/src/app.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/node_modules/@types: {"pollingInterval":500} /a/notexistingfolder: {"pollingInterval":500} FsWatches:: +/a/tsconfig.json: + {} +/a/src/app.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/src: 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 59fe7fa4520b5..8fa802dd7c697 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 @@ -60,18 +60,18 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/commonfile3.ts: - {"pollingInterval":250} + {"pollingInterval":500} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/commonfile1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 24b7a918ad874..2cf43a8189e28 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 @@ -177,18 +177,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file2.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -232,18 +232,18 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -312,20 +312,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file3.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/file3.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} +/user/username/projects/myproject/src/file3.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -356,20 +356,20 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/file3.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} +/user/username/projects/myproject/src/file3.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: 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 7a553eb1c7ac6..0bdc2d356c5e3 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 @@ -177,18 +177,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file2.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -232,18 +232,18 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -312,20 +312,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file3.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/file3.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} +/user/username/projects/myproject/src/file3.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -356,20 +356,20 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/file3.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} +/user/username/projects/myproject/src/file3.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: 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 75b43c05792ec..673a8e6669886 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 @@ -177,18 +177,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file2.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -224,18 +224,18 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -304,20 +304,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file3.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/file3.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} +/user/username/projects/myproject/src/file3.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -344,20 +344,20 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/file3.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} +/user/username/projects/myproject/src/file3.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: 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 fdcfcdc9971a6..83e6548b002fb 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 @@ -175,18 +175,18 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -219,18 +219,18 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -298,20 +298,20 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/file3.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} +/user/username/projects/myproject/src/file3.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -350,20 +350,20 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/file3.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} +/user/username/projects/myproject/src/file3.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: 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 9a342623b4189..c87baf238012c 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 @@ -177,18 +177,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file2.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -232,18 +232,18 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -312,20 +312,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file3.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/file3.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} +/user/username/projects/myproject/src/file3.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -356,20 +356,20 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/file3.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} +/user/username/projects/myproject/src/file3.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: 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 6642e485a953d..82310b617cd3d 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 @@ -177,18 +177,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file2.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -224,18 +224,18 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -304,20 +304,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file3.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/file3.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} +/user/username/projects/myproject/src/file3.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -344,20 +344,20 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} /a/lib/lib.es2016.full.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/file3.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} +/user/username/projects/myproject/src/file3.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: 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 73a11561c976f..b58d7e09a225a 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 @@ -58,18 +58,18 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/file1.ts: - {"pollingInterval":250} -/a/b/node_modules/module1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/file1.ts: + {} +/a/b/node_modules/module1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b/node_modules: @@ -120,18 +120,18 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (computed .d.ts) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} -/a/module1.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/file1.ts: + {} +/a/lib/lib.d.ts: + {} +/a/module1.ts: + {} /a/b: {} 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 0ad441a6cd8a2..ae0fcb3fa422d 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 @@ -59,18 +59,18 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile1.ts: - {"pollingInterval":250} -/a/b/commonfile2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/commonfile1.ts: + {} +/a/b/commonfile2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -124,18 +124,18 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (computed .d.ts) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile1.ts: - {"pollingInterval":250} -/a/b/commonfile2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/commonfile1.ts: + {} +/a/b/commonfile2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -184,16 +184,16 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (computed .d.ts) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/commonfile1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/should-support-files-without-extensions.js b/tests/baselines/reference/tscWatch/programUpdates/should-support-files-without-extensions.js index d051f7a27fcb9..8db7ed20c3cbc 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/should-support-files-without-extensions.js +++ b/tests/baselines/reference/tscWatch/programUpdates/should-support-files-without-extensions.js @@ -41,12 +41,12 @@ Shape signatures in builder refreshed for:: /a/compile (used version) PolledWatches:: -/a/compile: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/a/compile: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 1c34b727a3270..44e401474b612 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 @@ -61,18 +61,18 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile1.ts: - {"pollingInterval":250} -/a/b/commonfile2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/commonfile1.ts: + {} +/a/b/commonfile2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: diff --git a/tests/baselines/reference/tscWatch/programUpdates/shouldnt-report-error-about-unused-function-incorrectly-when-file-changes-from-global-to-module.js b/tests/baselines/reference/tscWatch/programUpdates/shouldnt-report-error-about-unused-function-incorrectly-when-file-changes-from-global-to-module.js index 5736357e32a19..faafa22dc875f 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/shouldnt-report-error-about-unused-function-incorrectly-when-file-changes-from-global-to-module.js +++ b/tests/baselines/reference/tscWatch/programUpdates/shouldnt-report-error-about-unused-function-incorrectly-when-file-changes-from-global-to-module.js @@ -46,12 +46,12 @@ Shape signatures in builder refreshed for:: /a/b/file.ts (used version) PolledWatches:: -/a/b/file.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/a/b/file.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -101,12 +101,12 @@ Shape signatures in builder refreshed for:: /a/b/file.ts (computed .d.ts) PolledWatches:: -/a/b/file.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/a/b/file.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 5d600f2b2838a..067032d0c9b5d 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 @@ -52,14 +52,14 @@ Shape signatures in builder refreshed for:: /a/d/f3.ts (used version) PolledWatches:: + +FsWatches:: /a/c/f2.ts: - {"pollingInterval":250} + {} /a/d/f3.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -111,19 +111,19 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) PolledWatches:: + +FsWatches:: /a/c/f2.ts: - {"pollingInterval":250} - {"pollingInterval":250} + {} + {} /a/d/f3.ts: - {"pollingInterval":250} - {"pollingInterval":250} + {} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - {"pollingInterval":250} + {} + {} /a/b/f1.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: 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 9843a86872ca1..05d9c456981c7 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 @@ -50,16 +50,16 @@ Shape signatures in builder refreshed for:: /a/b/node_modules/@types/node/index.d.ts (used version) PolledWatches:: + +FsWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {} /a/b/app.ts: - {"pollingInterval":250} + {} /a/b/node_modules/@types/node/index.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /a/b/node_modules: 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 b537d8b2b1276..fb86001568eaa 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 @@ -64,16 +64,16 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) PolledWatches:: + +FsWatches:: /tsconfig.json: - {"pollingInterval":250} + {} /a.ts: - {"pollingInterval":250} + {} /b.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /: @@ -140,16 +140,16 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /tsconfig.json: - {"pollingInterval":250} + {} /a.ts: - {"pollingInterval":250} + {} /b.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /: @@ -189,16 +189,16 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /tsconfig.json: - {"pollingInterval":250} + {} /a.ts: - {"pollingInterval":250} + {} /b.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} 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 9b0ff371d958f..1c294b8ddcdfc 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 @@ -50,14 +50,14 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) PolledWatches:: + +FsWatches:: /tsconfig.json: - {"pollingInterval":250} + {} /a.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /: @@ -112,14 +112,14 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /tsconfig.json: - {"pollingInterval":250} + {} /a.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /: 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 7e6822e923b1a..a718a083f7cff 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 @@ -45,16 +45,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/index.tsx (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/index.tsx: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/index.tsx: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -94,16 +94,16 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/index.tsx: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/index.tsx: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 d5c82e0f9c4d6..d620c7328b97a 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 @@ -51,18 +51,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/myproject/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -122,18 +122,18 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/myproject/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -180,18 +180,18 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/myproject/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -241,18 +241,18 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/myproject/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 3021f65f25d1a..7ade975359b04 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 @@ -54,18 +54,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/myproject/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -114,18 +114,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/myproject/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -169,18 +169,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/myproject/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -234,18 +234,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/myproject/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -289,18 +289,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/myproject/b.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 54e2dbcfe6675..82836c240c688 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 @@ -60,14 +60,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -113,14 +113,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -174,14 +174,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 6da2cd8945455..a47c7c683f9be 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 @@ -55,14 +55,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -107,14 +107,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -162,14 +162,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 4ec168b266ff7..9f3cee62955ea 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 @@ -55,14 +55,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -107,14 +107,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -162,14 +162,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 6a20f6f721b6b..13e80bebbdca0 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 @@ -57,14 +57,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -106,14 +106,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -168,14 +168,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 ef516ef293fd9..f8229c73998a8 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 @@ -52,14 +52,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -100,14 +100,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -156,14 +156,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 57aff9a2883bb..53379be92a74e 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 @@ -52,14 +52,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -100,14 +100,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -156,14 +156,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 c494c00575450..f8a0ee0ab6cfd 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 @@ -46,16 +46,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -123,18 +123,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/b.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -176,16 +176,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 c5a77755a3a24..4e787187b7f0b 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 @@ -50,16 +50,16 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) PolledWatches:: + +FsWatches:: /tsconfig.json: - {"pollingInterval":250} + {} /a.ts: - {"pollingInterval":250} + {} /b.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /: @@ -127,16 +127,16 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /tsconfig.json: - {"pollingInterval":250} + {} /a.ts: - {"pollingInterval":250} + {} /b.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} 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 a172a92d7b781..364c5cf6ec85f 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 @@ -58,16 +58,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -114,16 +114,16 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 755cd6445ed0e..c400ec28ffc0d 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 @@ -45,16 +45,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -101,16 +101,16 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -153,16 +153,16 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -200,16 +200,16 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 8821b07bb57b1..a29d8a68868bb 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 @@ -52,20 +52,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} /user/username/projects/myproject/data.json: {"pollingInterval":500} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} /user/username/projects/myproject: {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -111,21 +111,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/data.json: {"pollingInterval":500} - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} /user/username/projects/myproject: {} +/user/username/projects/myproject/data.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 4663cb0aad98f..c0e987afec7be 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 @@ -44,16 +44,16 @@ Shape signatures in builder refreshed for:: /home/username/project/src/file1.ts (used version) PolledWatches:: -/home/username/project/tsconfig.json: - {"pollingInterval":250} -/home/username/project/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /home/username/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/home/username/project/tsconfig.json: + {} +/home/username/project/src/file1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /home/username/project: @@ -97,16 +97,16 @@ Shape signatures in builder refreshed for:: /home/username/project/src/file2.ts (computed .d.ts) PolledWatches:: -/home/username/project/tsconfig.json: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /home/username/project/node_modules/@types: {"pollingInterval":500} -/home/username/project/src/file2.ts: - {"pollingInterval":250} FsWatches:: +/home/username/project/tsconfig.json: + {} +/a/lib/lib.d.ts: + {} +/home/username/project/src/file2.ts: + {} FsWatchesRecursive:: /home/username/project: 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 bb7fe53a7451c..2f9df780552cd 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/when-creating-extensionless-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/when-creating-extensionless-file.js @@ -55,16 +55,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/index.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/index.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/index.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -92,16 +92,16 @@ Synchronizing program PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/index.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/index.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 a715fb4e97c1f..3ef0e3a7ad4e2 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 @@ -65,18 +65,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/client/linktofolder2/module2.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/client/folder1/module1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/client/linktofolder2/module2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/client/folder1/module1.ts: + {} +/user/username/projects/myproject/client/linktofolder2/module2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/client: @@ -146,20 +146,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/client/linktofolder2/module3.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/client/folder1/module1.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/client/linktofolder2/module2.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} + {} /user/username/projects/myproject/client/linktofolder2/module3.ts: - {"pollingInterval":250} - -FsWatches:: + {} 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 b0f41fc3ff848..53b66650d12e1 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 @@ -77,16 +77,6 @@ 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/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/class1.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project2/class2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: @@ -95,6 +85,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/class1.d.ts: + {} +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: @@ -207,16 +207,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/class1.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project2/class2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: @@ -224,9 +214,19 @@ PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/project1/class3.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/class1.d.ts: + {} +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: @@ -285,26 +285,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/class1.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project2/class2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/projects/project2/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/myproject/projects/project1/class3.d.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/class1.d.ts: + {} +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/projects/project1/class3.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: @@ -383,26 +383,26 @@ Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myprojec PolledWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/class1.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project2/class2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/projects/project2/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/myproject/projects/project1/class3.d.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/class1.d.ts: + {} +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/projects/project1/class3.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: @@ -464,16 +464,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/class1.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project2/class2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: @@ -481,9 +471,19 @@ PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/project1/class3.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/class1.d.ts: + {} +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: @@ -584,26 +584,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/class1.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project2/class2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/projects/project2/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/myproject/projects/project1/class3.d.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/class1.d.ts: + {} +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/projects/project1/class3.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: 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 ff8d2a188efdb..b265e8925eacb 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 @@ -72,18 +72,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/myproject/b.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -130,18 +130,18 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/myproject/b.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -190,18 +190,18 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/myproject/b.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -254,18 +254,18 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/myproject/b.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -313,18 +313,18 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/myproject/b.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -368,18 +368,18 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/myproject/b.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -433,18 +433,18 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/user/username/projects/myproject/b.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/a.ts: + {} +/user/username/projects/myproject/b.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 6e9e39b20d6bb..106039f6732b1 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 @@ -53,18 +53,18 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile1.ts: - {"pollingInterval":250} -/a/b/commonfile2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/commonfile1.ts: + {} +/a/b/commonfile2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -99,18 +99,18 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile1.ts: - {"pollingInterval":250} -/a/b/commonfile2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/commonfile1.ts: + {} +/a/b/commonfile2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js b/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js index a57a51c0846a8..426b88e918f6c 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js @@ -407,28 +407,28 @@ Dependencies for:: /user/username/projects/sample1/core/index.d.ts PolledWatches:: +/user/username/projects/sample1/tests/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/sample1/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/sample1/tests/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/sample1/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -541,28 +541,28 @@ function foo() { } Output:: PolledWatches:: +/user/username/projects/sample1/tests/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/sample1/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/sample1/tests/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/sample1/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -728,28 +728,28 @@ Dependencies for:: /user/username/projects/sample1/core/index.d.ts PolledWatches:: +/user/username/projects/sample1/tests/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/sample1/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/sample1/tests/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/sample1/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: @@ -988,28 +988,28 @@ Dependencies for:: /user/username/projects/sample1/core/index.d.ts PolledWatches:: +/user/username/projects/sample1/tests/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/sample1/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/sample1/tests/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/logic/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/sample1/tests/index.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/sample1/core/anothermodule.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/sample1/tests/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/sample1/node_modules/@types: - {"pollingInterval":500} + {} /user/username/projects/sample1/logic/decls/index.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/sample1/core: 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 7980675202441..5cbbbcc65c637 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 @@ -224,29 +224,29 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} + {} +/user/username/projects/transitivereferences: + {} /user/username/projects/transitivereferences/b/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/transitivereferences: {} FsWatchesRecursive:: @@ -391,29 +391,29 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} + {} +/user/username/projects/transitivereferences: + {} /user/username/projects/transitivereferences/b/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/transitivereferences: {} FsWatchesRecursive:: @@ -491,30 +491,30 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/index.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/nrefs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} /user/username/projects/transitivereferences: {} +/user/username/projects/transitivereferences/nrefs/a.d.ts: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: @@ -586,30 +586,30 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/index.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} /user/username/projects/transitivereferences: {} +/user/username/projects/transitivereferences/refs/a.d.ts: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: @@ -681,29 +681,29 @@ Dependencies for:: /user/username/projects/transitiveReferences/nrefs/a.d.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/index.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} +/user/username/projects/transitivereferences: + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} + {} /user/username/projects/transitivereferences/nrefs/a.d.ts: - {"pollingInterval":250} - -FsWatches:: -/user/username/projects/transitivereferences: {} FsWatchesRecursive:: @@ -769,28 +769,28 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts PolledWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/transitivereferences/a/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/b/index.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/transitivereferences/c/tsconfig.json: + {} +/user/username/projects/transitivereferences/b/tsconfig.json: + {} +/user/username/projects/transitivereferences/a/tsconfig.json: + {} +/user/username/projects/transitivereferences/c/index.ts: + {} +/user/username/projects/transitivereferences/b/index.d.ts: + {} +/a/lib/lib.d.ts: + {} /user/username/projects/transitivereferences: {} +/user/username/projects/transitivereferences/refs/a.d.ts: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: @@ -858,26 +858,26 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.ts PolledWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} -/user/username/projects/transitivereferences/b/index.ts: - {"pollingInterval":250} 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: {} +/user/username/projects/transitivereferences/refs/a.d.ts: + {} +/user/username/projects/transitivereferences/b/index.ts: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: @@ -948,29 +948,29 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} +/user/username/projects/transitivereferences: + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} + {} /user/username/projects/transitivereferences/a/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/index.d.ts: - {"pollingInterval":250} - -FsWatches:: -/user/username/projects/transitivereferences: {} FsWatchesRecursive:: @@ -1046,29 +1046,29 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} +/user/username/projects/transitivereferences: + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} + {} /user/username/projects/transitivereferences/a/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/index.ts: - {"pollingInterval":250} - -FsWatches:: -/user/username/projects/transitivereferences: {} FsWatchesRecursive:: @@ -1142,29 +1142,29 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} +/user/username/projects/transitivereferences: + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} + {} /user/username/projects/transitivereferences/a/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/index.d.ts: - {"pollingInterval":250} - -FsWatches:: -/user/username/projects/transitivereferences: {} FsWatchesRecursive:: 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 f1479234f9921..c7018f54ee68a 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 @@ -224,29 +224,29 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} + {} +/user/username/projects/transitivereferences: + {} /user/username/projects/transitivereferences/b/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/transitivereferences: {} FsWatchesRecursive:: @@ -387,29 +387,29 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} + {} +/user/username/projects/transitivereferences: + {} /user/username/projects/transitivereferences/b/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/transitivereferences: {} FsWatchesRecursive:: @@ -483,30 +483,30 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/index.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/nrefs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} /user/username/projects/transitivereferences: {} +/user/username/projects/transitivereferences/nrefs/a.d.ts: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: @@ -574,30 +574,30 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/index.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} /user/username/projects/transitivereferences: {} +/user/username/projects/transitivereferences/refs/a.d.ts: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: @@ -665,29 +665,29 @@ Dependencies for:: /user/username/projects/transitiveReferences/nrefs/a.d.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/index.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} +/user/username/projects/transitivereferences: + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} + {} /user/username/projects/transitivereferences/nrefs/a.d.ts: - {"pollingInterval":250} - -FsWatches:: -/user/username/projects/transitivereferences: {} FsWatchesRecursive:: @@ -748,28 +748,28 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts PolledWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/transitivereferences/a/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/b/index.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/transitivereferences/c/tsconfig.json: + {} +/user/username/projects/transitivereferences/b/tsconfig.json: + {} +/user/username/projects/transitivereferences/a/tsconfig.json: + {} +/user/username/projects/transitivereferences/c/index.ts: + {} +/user/username/projects/transitivereferences/b/index.d.ts: + {} +/a/lib/lib.d.ts: + {} /user/username/projects/transitivereferences: {} +/user/username/projects/transitivereferences/refs/a.d.ts: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: @@ -832,26 +832,26 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.ts PolledWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} -/user/username/projects/transitivereferences/b/index.ts: - {"pollingInterval":250} 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: {} +/user/username/projects/transitivereferences/refs/a.d.ts: + {} +/user/username/projects/transitivereferences/b/index.ts: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: @@ -920,29 +920,29 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} +/user/username/projects/transitivereferences: + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} + {} /user/username/projects/transitivereferences/a/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/index.d.ts: - {"pollingInterval":250} - -FsWatches:: -/user/username/projects/transitivereferences: {} FsWatchesRecursive:: @@ -1014,29 +1014,29 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} +/user/username/projects/transitivereferences: + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} + {} /user/username/projects/transitivereferences/a/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/index.ts: - {"pollingInterval":250} - -FsWatches:: -/user/username/projects/transitivereferences: {} FsWatchesRecursive:: @@ -1107,29 +1107,29 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/c/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c/index.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} +/user/username/projects/transitivereferences: + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/c/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} + {} /user/username/projects/transitivereferences/a/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a/index.d.ts: - {"pollingInterval":250} - -FsWatches:: -/user/username/projects/transitivereferences: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js index 908b9a27d8a01..56ed3cfd223fe 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js @@ -248,26 +248,26 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.d.ts PolledWatches:: +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/tsconfig.b.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/tsconfig.a.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: @@ -404,26 +404,26 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.d.ts PolledWatches:: +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/tsconfig.b.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/tsconfig.a.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: @@ -492,26 +492,26 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.d.ts PolledWatches:: +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/tsconfig.b.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/tsconfig.a.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/nrefs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/nrefs: @@ -575,26 +575,26 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.d.ts PolledWatches:: +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/tsconfig.b.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/tsconfig.a.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: @@ -658,26 +658,26 @@ Dependencies for:: /user/username/projects/transitiveReferences/nrefs/a.d.ts PolledWatches:: +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/tsconfig.b.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/tsconfig.a.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} + {} /user/username/projects/transitivereferences/nrefs/a.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: @@ -735,24 +735,24 @@ Dependencies for:: /user/username/projects/transitiveReferences/b.d.ts PolledWatches:: +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/tsconfig.b.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/tsconfig.a.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: @@ -813,22 +813,22 @@ Dependencies for:: /user/username/projects/transitiveReferences/b.ts PolledWatches:: +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/tsconfig.b.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} + {} /user/username/projects/transitivereferences/b.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: @@ -906,26 +906,26 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.d.ts PolledWatches:: +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/tsconfig.b.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} + {} /user/username/projects/transitivereferences/tsconfig.a.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: @@ -992,26 +992,26 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.ts PolledWatches:: +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/tsconfig.b.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} + {} /user/username/projects/transitivereferences/tsconfig.a.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: @@ -1078,26 +1078,26 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.d.ts PolledWatches:: +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/tsconfig.b.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} + {} /user/username/projects/transitivereferences/tsconfig.a.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: 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 e6c00bf7caa05..4cdd835b165a2 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 @@ -235,26 +235,26 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.d.ts PolledWatches:: +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/transitivereferences/tsconfig.c.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/tsconfig.b.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/tsconfig.a.json: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/c.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/b.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/a.d.ts: - {"pollingInterval":250} + {} /user/username/projects/transitivereferences/refs/a.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/transitivereferences/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: diff --git a/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js b/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js index f28115f19586d..2daa6418a1aa8 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js @@ -57,14 +57,14 @@ Shape signatures in builder refreshed for:: /a/d/f0.ts (used version) PolledWatches:: + +FsWatches:: /a/d/f0.ts: - {"pollingInterval":250} + {} /a/f1.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /a: @@ -130,14 +130,14 @@ Shape signatures in builder refreshed for:: /a/d/f0.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /a/d/f0.ts: - {"pollingInterval":250} + {} /a/f1.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /a: @@ -188,14 +188,14 @@ Shape signatures in builder refreshed for:: /a/d/f0.ts (computed .d.ts) PolledWatches:: -/a/d/f0.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /node_modules: {"pollingInterval":500} FsWatches:: +/a/d/f0.ts: + {} +/a/lib/lib.d.ts: + {} /: {} @@ -256,14 +256,14 @@ Shape signatures in builder refreshed for:: /a/d/f0.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /a/d/f0.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /a/f1.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /a: 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 8261fe7e2db78..af0991419ee23 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 @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/test.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/test.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/somemodule/index.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/test.ts: + {} +/user/username/projects/myproject/node_modules/somemodule/index.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: @@ -87,18 +87,18 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/test.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/somemodule/index.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/test.ts: + {} +/user/username/projects/myproject/node_modules/somemodule/index.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: 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 7b302d643c276..b274c2175ac88 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 @@ -50,14 +50,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/test.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/test.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/somemodule/index.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user: @@ -81,14 +81,14 @@ Input:: Output:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/test.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/somemodule/index.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user: 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 152d108b42afa..65ebe6b008841 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 @@ -46,14 +46,14 @@ Shape signatures in builder refreshed for:: /a/foo.ts (used version) PolledWatches:: -/a/foo.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /node_modules: {"pollingInterval":500} FsWatches:: +/a/foo.ts: + {} +/a/lib/lib.d.ts: + {} /: {} @@ -106,14 +106,14 @@ Shape signatures in builder refreshed for:: /a/foo.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /a/foo.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /a/bar.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /a: 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 f6aeea6a8e3af..35aaf20a8f7e7 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 @@ -47,14 +47,14 @@ Shape signatures in builder refreshed for:: /a/foo.ts (used version) PolledWatches:: + +FsWatches:: /a/foo.ts: - {"pollingInterval":250} + {} /a/bar.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /a: @@ -102,14 +102,14 @@ Shape signatures in builder refreshed for:: /a/foo.ts (computed .d.ts) PolledWatches:: -/a/foo.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /node_modules: {"pollingInterval":500} FsWatches:: +/a/foo.ts: + {} +/a/lib/lib.d.ts: + {} /: {} @@ -153,14 +153,14 @@ Shape signatures in builder refreshed for:: /a/foo.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /a/foo.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /a/bar.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /a: 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 f3d6f974a40f5..68ddf1b43970e 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 @@ -51,16 +51,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib/app.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/lib/app.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/lib/app.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -114,18 +114,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib/app.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib/app.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/@myapp/ts-types/types/somefile.define.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/@myapp/ts-types/package.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -144,18 +144,18 @@ Input:: Output:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/lib/app.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/@myapp/ts-types/types/somefile.define.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/@myapp/ts-types/package.json: - {"pollingInterval":250} - -FsWatches:: + {} 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 c6a69d019fb23..ab8e19027fd56 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 @@ -60,26 +60,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main/index.ts (used version) PolledWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/linked-package/dist/index.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/linked-package/dist/other.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/main/@scoped: {"pollingInterval":500} -/user/username/projects/myproject/linked-package/package.json: - {"pollingInterval":250} /user/username/projects/myproject/main/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/main/index.ts: + {} +/user/username/projects/myproject/linked-package/dist/index.d.ts: + {} +/user/username/projects/myproject/linked-package/dist/other.d.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/linked-package/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/linked-package: 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 5cb399c261b5c..ecebc98929664 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 @@ -61,18 +61,18 @@ Shape signatures in builder refreshed for:: /a/b/bar.d.ts (used version) PolledWatches:: -/a/b/foo.ts: - {"pollingInterval":250} -/a/b/bar.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules: {"pollingInterval":500} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/foo.ts: + {} +/a/b/bar.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -128,18 +128,18 @@ Shape signatures in builder refreshed for:: /a/b/foo.ts (computed .d.ts) PolledWatches:: -/a/b/foo.ts: - {"pollingInterval":250} -/a/b/bar.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules: {"pollingInterval":500} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/foo.ts: + {} +/a/b/bar.d.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 449865df70366..eae165b7aaf8a 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 @@ -91,22 +91,22 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/@types/node/index.d.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/worker.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/@types/node/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/@types/node/base.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/@types/node/ts3.6/base.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/@types/node/globals.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: @@ -247,14 +247,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/worker.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/worker.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: @@ -338,16 +338,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/worker.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: @@ -403,16 +403,16 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/worker.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: @@ -512,24 +512,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/@types/node/index.d.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/worker.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/@types/node/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/@types/node/base.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/@types/node/ts3.6/base.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/@types/node/globals.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: 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 a414c9273e18e..3df2052361eda 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 @@ -46,16 +46,16 @@ Shape signatures in builder refreshed for:: /a/b/foo.ts (used version) PolledWatches:: -/a/b/foo.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules: {"pollingInterval":500} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/foo.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -114,16 +114,16 @@ Shape signatures in builder refreshed for:: /a/b/node_modules/@types/node/index.d.ts (used version) PolledWatches:: + +FsWatches:: /a/b/foo.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /a/b/node_modules/@types/node/index.d.ts: - {"pollingInterval":250} + {} /a/b/node_modules/@types/node/package.json: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /a/b/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 a7c32a5b1ba3b..898bef4f70e53 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 @@ -49,16 +49,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/a.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/a.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -106,14 +106,14 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/a.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/@types/qqq/index.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: 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 086974399c481..c52887897687b 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 @@ -58,16 +58,6 @@ Shape signatures in builder refreshed for:: /a/b/projects/myproject/src/file2.ts (used version) PolledWatches:: -/a/b/projects/myproject/src/tsconfig.json: - {"pollingInterval":250} -/a/b/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/a/b/projects/myproject/node_modules/module1/index.js: - {"pollingInterval":250} -/a/b/projects/myproject/src/file2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/projects/myproject/src/node_modules: {"pollingInterval":500} /a/b/projects/myproject/src/node_modules/@types: @@ -76,6 +66,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/a/b/projects/myproject/src/tsconfig.json: + {} +/a/b/projects/myproject/src/file1.ts: + {} +/a/b/projects/myproject/node_modules/module1/index.js: + {} +/a/b/projects/myproject/src/file2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b/projects/myproject/node_modules: @@ -133,16 +133,6 @@ Shape signatures in builder refreshed for:: /a/b/projects/myproject/src/file1.ts (computed .d.ts) PolledWatches:: -/a/b/projects/myproject/src/tsconfig.json: - {"pollingInterval":250} -/a/b/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/a/b/projects/myproject/node_modules/module1/index.js: - {"pollingInterval":250} -/a/b/projects/myproject/src/file2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/projects/myproject/src/node_modules: {"pollingInterval":500} /a/b/projects/myproject/src/node_modules/@types: @@ -151,6 +141,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/a/b/projects/myproject/src/tsconfig.json: + {} +/a/b/projects/myproject/src/file1.ts: + {} +/a/b/projects/myproject/node_modules/module1/index.js: + {} +/a/b/projects/myproject/src/file2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b/projects/myproject/node_modules: 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 ccdc92a4e6e84..4f0dc0b978318 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 @@ -207,24 +207,10 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/a/src/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/bar.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/b/package.json: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: @@ -233,6 +219,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/packages/a/tsconfig.json: + {} +/user/username/projects/myproject/packages/b/tsconfig.json: + {} +/user/username/projects/myproject/packages/a/src/index.ts: + {} +/user/username/projects/myproject/packages/b/src/index.ts: + {} +/user/username/projects/myproject/packages/b/src/bar.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/packages/b/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: 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 d7f2ce67e3d44..f85682c6094e7 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 @@ -207,24 +207,10 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/a/src/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/bar.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/b/package.json: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: @@ -233,6 +219,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/packages/a/tsconfig.json: + {} +/user/username/projects/myproject/packages/b/tsconfig.json: + {} +/user/username/projects/myproject/packages/a/src/index.ts: + {} +/user/username/projects/myproject/packages/b/src/index.ts: + {} +/user/username/projects/myproject/packages/b/src/bar.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/packages/b/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: 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 c35e6762b82ca..3600bc78a8412 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 @@ -67,24 +67,10 @@ 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/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/a/src/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/bar.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/b/package.json: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: @@ -93,6 +79,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/packages/a/tsconfig.json: + {} +/user/username/projects/myproject/packages/b/tsconfig.json: + {} +/user/username/projects/myproject/packages/a/src/index.ts: + {} +/user/username/projects/myproject/packages/b/src/index.ts: + {} +/user/username/projects/myproject/packages/b/src/bar.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/packages/b/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: 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 951e8981a89f8..f13762adf65f9 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 @@ -207,24 +207,10 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/a/src/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/bar.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/b/package.json: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: @@ -233,6 +219,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/packages/a/tsconfig.json: + {} +/user/username/projects/myproject/packages/b/tsconfig.json: + {} +/user/username/projects/myproject/packages/a/src/index.ts: + {} +/user/username/projects/myproject/packages/b/src/index.ts: + {} +/user/username/projects/myproject/packages/b/src/bar.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/packages/b/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: 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 dd654919e1194..36c6d14913691 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 @@ -207,24 +207,10 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/a/src/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/bar.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/b/package.json: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: @@ -233,6 +219,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/packages/a/tsconfig.json: + {} +/user/username/projects/myproject/packages/b/tsconfig.json: + {} +/user/username/projects/myproject/packages/a/src/index.ts: + {} +/user/username/projects/myproject/packages/b/src/index.ts: + {} +/user/username/projects/myproject/packages/b/src/bar.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/packages/b/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: 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 61f1da90a42aa..add8ceb3ca115 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 @@ -67,24 +67,10 @@ 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/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/a/src/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/bar.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/b/package.json: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: @@ -93,6 +79,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/packages/a/tsconfig.json: + {} +/user/username/projects/myproject/packages/b/tsconfig.json: + {} +/user/username/projects/myproject/packages/a/src/index.ts: + {} +/user/username/projects/myproject/packages/b/src/index.ts: + {} +/user/username/projects/myproject/packages/b/src/bar.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/packages/b/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: 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 a85e42c94ad61..944c2c7cf7abf 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 @@ -67,24 +67,10 @@ 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/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/a/src/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/bar.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/b/package.json: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: @@ -93,6 +79,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/packages/a/tsconfig.json: + {} +/user/username/projects/myproject/packages/b/tsconfig.json: + {} +/user/username/projects/myproject/packages/a/src/index.ts: + {} +/user/username/projects/myproject/packages/b/src/index.ts: + {} +/user/username/projects/myproject/packages/b/src/bar.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/packages/b/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: 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 51ac9f8997c3f..d2c9dfabb5d9a 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 @@ -67,24 +67,10 @@ 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/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/a/src/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/bar.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/b/package.json: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: @@ -93,6 +79,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/packages/a/tsconfig.json: + {} +/user/username/projects/myproject/packages/b/tsconfig.json: + {} +/user/username/projects/myproject/packages/a/src/index.ts: + {} +/user/username/projects/myproject/packages/b/src/index.ts: + {} +/user/username/projects/myproject/packages/b/src/bar.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/packages/b/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: 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 2f71fb658696f..cafc3a4b25dd1 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 @@ -207,24 +207,10 @@ 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/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/a/src/test.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/foo.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/b/package.json: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: @@ -233,6 +219,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/packages/a/tsconfig.json: + {} +/user/username/projects/myproject/packages/b/tsconfig.json: + {} +/user/username/projects/myproject/packages/a/src/test.ts: + {} +/user/username/projects/myproject/packages/b/src/foo.ts: + {} +/user/username/projects/myproject/packages/b/src/bar/foo.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/packages/b/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: 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 b8375f8d12e0a..244186f608bfe 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 @@ -207,24 +207,10 @@ 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/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/a/src/test.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/foo.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/b/package.json: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: @@ -233,6 +219,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/packages/a/tsconfig.json: + {} +/user/username/projects/myproject/packages/b/tsconfig.json: + {} +/user/username/projects/myproject/packages/a/src/test.ts: + {} +/user/username/projects/myproject/packages/b/src/foo.ts: + {} +/user/username/projects/myproject/packages/b/src/bar/foo.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/packages/b/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: 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 16c18f45d615c..1e095a6422601 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 @@ -67,24 +67,10 @@ 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/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/a/src/test.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/foo.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/b/package.json: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: @@ -93,6 +79,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/packages/a/tsconfig.json: + {} +/user/username/projects/myproject/packages/b/tsconfig.json: + {} +/user/username/projects/myproject/packages/a/src/test.ts: + {} +/user/username/projects/myproject/packages/b/src/foo.ts: + {} +/user/username/projects/myproject/packages/b/src/bar/foo.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/packages/b/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: 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 3621c833b852a..6eb9427b18672 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 @@ -207,24 +207,10 @@ 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/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/a/src/test.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/foo.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/b/package.json: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: @@ -233,6 +219,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/packages/a/tsconfig.json: + {} +/user/username/projects/myproject/packages/b/tsconfig.json: + {} +/user/username/projects/myproject/packages/a/src/test.ts: + {} +/user/username/projects/myproject/packages/b/src/foo.ts: + {} +/user/username/projects/myproject/packages/b/src/bar/foo.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/packages/b/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: 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 3ada973ec5a08..86ed01dd54b44 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 @@ -207,24 +207,10 @@ 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/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/a/src/test.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/foo.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/b/package.json: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: @@ -233,6 +219,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/packages/a/tsconfig.json: + {} +/user/username/projects/myproject/packages/b/tsconfig.json: + {} +/user/username/projects/myproject/packages/a/src/test.ts: + {} +/user/username/projects/myproject/packages/b/src/foo.ts: + {} +/user/username/projects/myproject/packages/b/src/bar/foo.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/packages/b/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: 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 788cd166ade0d..9034d6d2b0042 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 @@ -67,24 +67,10 @@ 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/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/a/src/test.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/foo.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/b/package.json: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: @@ -93,6 +79,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/packages/a/tsconfig.json: + {} +/user/username/projects/myproject/packages/b/tsconfig.json: + {} +/user/username/projects/myproject/packages/a/src/test.ts: + {} +/user/username/projects/myproject/packages/b/src/foo.ts: + {} +/user/username/projects/myproject/packages/b/src/bar/foo.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/packages/b/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: 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 62d2677492f86..5fb8af5866e06 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 @@ -67,24 +67,10 @@ 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/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/a/src/test.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/foo.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/b/package.json: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: @@ -93,6 +79,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/packages/a/tsconfig.json: + {} +/user/username/projects/myproject/packages/b/tsconfig.json: + {} +/user/username/projects/myproject/packages/a/src/test.ts: + {} +/user/username/projects/myproject/packages/b/src/foo.ts: + {} +/user/username/projects/myproject/packages/b/src/bar/foo.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/packages/b/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: 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 4d6a7399fd7ad..c3ce3e110c74f 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 @@ -67,24 +67,10 @@ 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/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/packages/a/src/test.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/foo.ts: - {"pollingInterval":250} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/packages/b/package.json: - {"pollingInterval":250} /user/username/projects/myproject/packages/a/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/packages/node_modules/@types: @@ -93,6 +79,20 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/packages/a/tsconfig.json: + {} +/user/username/projects/myproject/packages/b/tsconfig.json: + {} +/user/username/projects/myproject/packages/a/src/test.ts: + {} +/user/username/projects/myproject/packages/b/src/foo.ts: + {} +/user/username/projects/myproject/packages/b/src/bar/foo.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/packages/b/package.json: + {} FsWatchesRecursive:: /user/username/projects/myproject/packages/b/src: 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 2d67e312c4d74..08b55425458d2 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 @@ -343,29 +343,29 @@ Shape signatures in builder refreshed for:: /user/username/projects/demo/animals/dog.ts (computed .d.ts) PolledWatches:: +/user/username/projects/demo/animals/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/demo/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/demo/animals/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/demo/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/demo/tsconfig-base.json: - {"pollingInterval":250} + {} /user/username/projects/demo/animals/animal.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/animals/dog.ts: - {"pollingInterval":250} + {} +/user/username/projects/demo/animals: + {} /user/username/projects/demo/animals/index.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/core/utilities.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/demo/animals/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/demo/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/demo/animals: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project.js index 79b8ad44e3122..cd78bcd9f5c8f 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project.js @@ -135,29 +135,29 @@ Shape signatures in builder refreshed for:: /user/username/projects/demo/animals/dog.ts (computed .d.ts during emit) PolledWatches:: +/user/username/projects/demo/animals/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/demo/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/demo/animals/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/demo/core/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/demo/tsconfig-base.json: - {"pollingInterval":250} + {} /user/username/projects/demo/animals/animal.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/animals/dog.ts: - {"pollingInterval":250} + {} +/user/username/projects/demo/animals: + {} /user/username/projects/demo/animals/index.ts: - {"pollingInterval":250} + {} /user/username/projects/demo/core/utilities.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/demo/animals/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/demo/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/demo/animals: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/watchApi/extraFileExtensions-are-supported.js b/tests/baselines/reference/tscWatch/watchApi/extraFileExtensions-are-supported.js index 8b890f57d2707..c81b7fbc32d7d 100644 --- a/tests/baselines/reference/tscWatch/watchApi/extraFileExtensions-are-supported.js +++ b/tests/baselines/reference/tscWatch/watchApi/extraFileExtensions-are-supported.js @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/other.vue (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.vue: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.vue: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -108,20 +108,20 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/other2.vue (used version) PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/main.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/other.vue: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} + {} /user/username/projects/myproject/other2.vue: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 1b56ebd1b0342..7772012b2be5f 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 @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/other.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -147,18 +147,18 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -263,18 +263,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -353,18 +353,18 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -456,18 +456,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 ee7fa4917a8cd..4f27dd0bae3c0 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 @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/other.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -154,18 +154,18 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -277,18 +277,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -374,18 +374,18 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -484,18 +484,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 c516242b135fa..895e0388c9139 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 @@ -55,18 +55,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/other.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -180,18 +180,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -299,18 +299,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 b7617c5d05134..4a543001d0b75 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 @@ -55,18 +55,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/other.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -187,18 +187,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -313,18 +313,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: diff --git a/tests/baselines/reference/tscWatch/watchApi/semantic-builder-emitOnlyDts.js b/tests/baselines/reference/tscWatch/watchApi/semantic-builder-emitOnlyDts.js index adf78caeaf444..03cd2d9a3de26 100644 --- a/tests/baselines/reference/tscWatch/watchApi/semantic-builder-emitOnlyDts.js +++ b/tests/baselines/reference/tscWatch/watchApi/semantic-builder-emitOnlyDts.js @@ -55,18 +55,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/other.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -173,18 +173,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 08db622ba3e71..e9fe78cc48747 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 @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/other.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -101,18 +101,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/other.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 fa69cb00aac9f..4183501240b4b 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 @@ -60,18 +60,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/index.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/index.ts: - {"pollingInterval":250} -/user/username/projects/myproject/settings.json: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/index.ts: + {} +/user/username/projects/myproject/settings.json: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 17cf654f0ff50..68389de695fa9 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 @@ -59,16 +59,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/index.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/index.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/index.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 e51b7714a78ac..aacf29cf7de39 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 @@ -77,16 +77,6 @@ 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/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/class1.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project2/class2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: @@ -95,6 +85,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/class1.d.ts: + {} +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: @@ -207,16 +207,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/class1.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project2/class2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: @@ -224,9 +214,19 @@ PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/project1/class3.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/class1.d.ts: + {} +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: @@ -285,26 +285,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/class1.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project2/class2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/projects/project2/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/myproject/projects/project1/class3.d.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/class1.d.ts: + {} +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/projects/project1/class3.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: @@ -383,26 +383,26 @@ Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myprojec PolledWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/class1.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project2/class2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/projects/project2/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/myproject/projects/project1/class3.d.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/class1.d.ts: + {} +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/projects/project1/class3.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: @@ -464,16 +464,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/class1.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project2/class2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: @@ -481,9 +471,19 @@ PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/project1/class3.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/class1.d.ts: + {} +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: @@ -584,26 +584,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/class1.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project2/class2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/projects/project2/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/myproject/projects/project1/class3.d.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/class1.d.ts: + {} +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/projects/project1/class3.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: 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 62b4271f928e1..a07a68b47617e 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 @@ -77,16 +77,6 @@ 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/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/class1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project2/class2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/projects/project2/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/projects/node_modules/@types: @@ -95,6 +85,16 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/class1.ts: + {} +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: @@ -206,26 +206,26 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/class1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project2/class2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/projects/project2/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/myproject/projects/project1/class3.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/class1.ts: + {} +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/projects/project1/class3.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: @@ -304,26 +304,26 @@ Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myprojec PolledWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/class1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project2/class2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/projects/project2/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/myproject/projects/project1/class3.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/class1.ts: + {} +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/projects/project1/class3.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: @@ -348,26 +348,26 @@ Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myprojec PolledWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project1/class1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/projects/project2/class2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/projects/project2/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/myproject/projects/project1/class3.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/projects/project2/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/tsconfig.json: + {} +/user/username/projects/myproject/projects/project1/class1.ts: + {} +/user/username/projects/myproject/projects/project2/class2.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/projects/project1/class3.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: 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 a8f7770438708..8ff06d45408be 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 @@ -44,16 +44,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: @@ -96,18 +96,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/main.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/bar.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/a/lib/lib.d.ts: + {} +/user/username/projects/myproject/bar.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 3361429420273..e4a5d0a60779a 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 @@ -44,14 +44,14 @@ Shape signatures in builder refreshed for:: /a/username/project/src/file1.ts (used version) PolledWatches:: + +FsWatches:: /a/username/project/tsconfig.json: - {"pollingInterval":250} + {} /a/username/project/src/file1.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -91,14 +91,14 @@ Shape signatures in builder refreshed for:: /a/username/project/src/file2.ts (used version) PolledWatches:: + +FsWatches:: /a/username/project/tsconfig.json: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /a/username/project/src/file2.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: 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 16aa53421a3f9..e1d49a0b01dce 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 @@ -44,16 +44,16 @@ Shape signatures in builder refreshed for:: /a/username/project/src/file1.ts (used version) PolledWatches:: -/a/username/project/tsconfig.json: - {"pollingInterval":250} -/a/username/project/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/username/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/username/project/tsconfig.json: + {} +/a/username/project/src/file1.ts: + {} +/a/lib/lib.d.ts: + {} /a/username/project: {} /a/username/project/src: @@ -97,20 +97,20 @@ Shape signatures in builder refreshed for:: /a/username/project/src/file2.ts (used version) PolledWatches:: -/a/username/project/tsconfig.json: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/username/project/node_modules/@types: {"pollingInterval":500} -/a/username/project/src/file2.ts: - {"pollingInterval":250} FsWatches:: +/a/username/project/tsconfig.json: + {} +/a/lib/lib.d.ts: + {} /a/username/project: {} /a/username/project/src: {} +/a/username/project/src/file2.ts: + {} FsWatchesRecursive:: 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 e4f400348548a..8c7ecc82568a6 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 @@ -44,12 +44,6 @@ Shape signatures in builder refreshed for:: /a/username/project/src/file1.ts (used version) PolledWatches:: -/a/username/project/tsconfig.json: - {"pollingInterval":250} -/a/username/project/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/username/project/node_modules/@types: {"pollingInterval":500} /a/username/project: @@ -58,6 +52,12 @@ PolledWatches:: {"pollingInterval":500} FsWatches:: +/a/username/project/tsconfig.json: + {} +/a/username/project/src/file1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -97,20 +97,20 @@ Shape signatures in builder refreshed for:: /a/username/project/src/file2.ts (used version) PolledWatches:: -/a/username/project/tsconfig.json: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/username/project/node_modules/@types: {"pollingInterval":500} /a/username/project: {"pollingInterval":500} /a/username/project/src: {"pollingInterval":500} -/a/username/project/src/file2.ts: - {"pollingInterval":250} FsWatches:: +/a/username/project/tsconfig.json: + {} +/a/lib/lib.d.ts: + {} +/a/username/project/src/file2.ts: + {} FsWatchesRecursive:: 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 79a685871b561..135e5bdd68f77 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 @@ -86,18 +86,18 @@ Shape signatures in builder refreshed for:: /home/user/projects/myproject/src/file.ts (used version) PolledWatches:: -/home/user/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/home/user/projects/myproject/src/file.ts: - {"pollingInterval":250} -/home/user/projects/myproject/node_modules/reala/index.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /home/user/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/home/user/projects/myproject/tsconfig.json: + {} +/home/user/projects/myproject/src/file.ts: + {} +/home/user/projects/myproject/node_modules/reala/index.d.ts: + {} +/a/lib/lib.d.ts: + {} /home/user/projects/myproject/src: {} /home/user/projects/myproject/node_modules: 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 ce3da302d0984..0a5ddbc0fd4db 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 @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file1.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/src/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} +/a/lib/lib.d.ts: + {} /user/username/projects/myproject: {} /user/username/projects/myproject/dist: @@ -93,18 +93,18 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/src/file1.ts: + {} +/user/username/projects/myproject/src/file2.ts: + {} +/a/lib/lib.d.ts: + {} /user/username/projects/myproject: {} /user/username/projects/myproject/dist: @@ -151,18 +151,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file1.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} /user/username/projects/myproject/src/file2.ts: - {"pollingInterval":250} + {"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: {} /user/username/projects/myproject/dist: @@ -209,24 +209,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/renamed.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/renamed.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/src/file1.ts: + {} +/a/lib/lib.d.ts: + {} /user/username/projects/myproject: {} /user/username/projects/myproject/dist: {} /user/username/projects/myproject/src: {} +/user/username/projects/myproject/src/renamed.ts: + {} FsWatchesRecursive:: 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 901fcd6fd3df8..d460ef50920dc 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 @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file1.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/file2/index.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"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/node_modules: @@ -94,18 +94,18 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/file2/index.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"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/node_modules: @@ -132,18 +132,18 @@ export const y = 10; Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/file2/index.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"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/node_modules: @@ -188,20 +188,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file3.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/file2/index.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/file3.ts: - {"pollingInterval":250} 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/node_modules: @@ -212,6 +210,8 @@ FsWatches:: {} /user/username/projects/myproject/dist: {} +/user/username/projects/myproject/src/file3.ts: + {} FsWatchesRecursive:: @@ -236,20 +236,18 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/file2/index.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/file3.ts: - {"pollingInterval":250} 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/node_modules: @@ -260,6 +258,8 @@ FsWatches:: {} /user/username/projects/myproject/dist: {} +/user/username/projects/myproject/src/file3.ts: + {} FsWatchesRecursive:: @@ -273,20 +273,18 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/file2/index.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/file3.ts: - {"pollingInterval":250} 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/node_modules: @@ -297,6 +295,8 @@ FsWatches:: {} /user/username/projects/myproject/dist: {} +/user/username/projects/myproject/src/file3.ts: + {} FsWatchesRecursive:: 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 49b99d647e14d..2d4c6b704841a 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 @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file1.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/file2/index.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"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/node_modules: @@ -88,18 +88,18 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/file2/index.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"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/node_modules: @@ -146,16 +146,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file1.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/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/node_modules: @@ -198,16 +198,16 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/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/node_modules: @@ -227,16 +227,16 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/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/node_modules: @@ -256,16 +256,16 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/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/node_modules: @@ -288,16 +288,16 @@ export const x = 10; Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/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/node_modules: @@ -317,16 +317,16 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/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/node_modules: @@ -348,16 +348,16 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/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/node_modules: @@ -401,18 +401,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file1.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/node_modules/file2/index.d.ts: - {"pollingInterval":250} 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/node_modules: @@ -421,6 +419,8 @@ FsWatches:: {} /user/username/projects/myproject/node_modules/file2: {} +/user/username/projects/myproject/node_modules/file2/index.d.ts: + {} FsWatchesRecursive:: 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 d0402ced95ce7..5b0b57de93ec6 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 @@ -79,18 +79,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/main.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/bar/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -116,18 +116,18 @@ Input:: Output:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/bar/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: 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 e45507b9679cc..131b162bb1859 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 @@ -79,24 +79,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/main.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/bar/index.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/src/main.ts: + {} +/user/username/projects/myproject/node_modules/bar/index.d.ts: + {} /user/username/projects/myproject/node_modules: {} /user/username/projects/myproject/node_modules/bar: {} +/user/username/projects/myproject/node_modules/bar/foo.d.ts: + {} +/a/lib/lib.d.ts: + {} /user/username/projects/myproject/src: {} /user/username/projects/myproject: @@ -130,24 +130,24 @@ sysLog:: Elapsed:: *ms:: onTimerToUpdateChildWatches:: 0 undefined PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/bar/index.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/src/main.ts: + {} +/user/username/projects/myproject/node_modules/bar/index.d.ts: + {} /user/username/projects/myproject/node_modules: {} /user/username/projects/myproject/node_modules/bar: {} +/user/username/projects/myproject/node_modules/bar/foo.d.ts: + {} +/a/lib/lib.d.ts: + {} /user/username/projects/myproject/src: {} /user/username/projects/myproject: @@ -168,24 +168,24 @@ export function temp(): string; Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/bar/index.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/src/main.ts: + {} +/user/username/projects/myproject/node_modules/bar/index.d.ts: + {} /user/username/projects/myproject/node_modules: {} /user/username/projects/myproject/node_modules/bar: {} +/user/username/projects/myproject/node_modules/bar/foo.d.ts: + {} +/a/lib/lib.d.ts: + {} /user/username/projects/myproject/src: {} /user/username/projects/myproject: 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 2f788defbcced..5791c8ebe9434 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 @@ -62,24 +62,24 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/main.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/bar/index.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/src/main.ts: + {} +/user/username/projects/myproject/node_modules/bar/index.d.ts: + {} /user/username/projects/myproject/node_modules: {} /user/username/projects/myproject/node_modules/bar: {} +/user/username/projects/myproject/node_modules/bar/foo.d.ts: + {} +/a/lib/lib.d.ts: + {} /user/username/projects/myproject/src: {} /user/username/projects/myproject: @@ -104,24 +104,24 @@ Input:: Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/bar/index.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/src/main.ts: + {} +/user/username/projects/myproject/node_modules/bar/index.d.ts: + {} /user/username/projects/myproject/node_modules: {} /user/username/projects/myproject/node_modules/bar: {} +/user/username/projects/myproject/node_modules/bar/foo.d.ts: + {} +/a/lib/lib.d.ts: + {} /user/username/projects/myproject/src: {} /user/username/projects/myproject: @@ -142,24 +142,24 @@ export function temp(): string; Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/main.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/bar/index.d.ts: - {"pollingInterval":250} -/user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/src/main.ts: + {} +/user/username/projects/myproject/node_modules/bar/index.d.ts: + {} /user/username/projects/myproject/node_modules: {} /user/username/projects/myproject/node_modules/bar: {} +/user/username/projects/myproject/node_modules/bar/foo.d.ts: + {} +/a/lib/lib.d.ts: + {} /user/username/projects/myproject/src: {} /user/username/projects/myproject: 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 8dc6cc14d0986..02d7d5284776b 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option.js @@ -62,18 +62,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/main.ts (used version) PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/bar/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -99,18 +99,18 @@ Input:: Output:: PolledWatches:: + +FsWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {} /user/username/projects/myproject/src/main.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/bar/index.d.ts: - {"pollingInterval":250} + {} /user/username/projects/myproject/node_modules/bar/foo.d.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: 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 66b4ae952fef8..00add61529a00 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 @@ -81,16 +81,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/main.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/main.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/src/main.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: @@ -120,16 +120,16 @@ export function fooBar(): string; Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/main.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/src/main.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: 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 9d7a4b166bc71..612f57111f062 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option.js @@ -62,16 +62,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/main.ts (used version) PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/main.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/src/main.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: @@ -101,16 +101,16 @@ export function fooBar(): string; Output:: PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/user/username/projects/myproject/src/main.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/src/main.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: 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 fc498f65421e5..20539cfbb1075 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-fallbackPolling-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-fallbackPolling-option.js @@ -27,6 +27,10 @@ Output:: >> Screen clear [12:00:17 AM] Starting compilation in watch mode... +sysLog:: /a/b/tsconfig.json:: Changing to watchFile +sysLog:: /a/b/commonFile1.ts:: Changing to watchFile +sysLog:: /a/b/commonFile2.ts:: Changing to watchFile +sysLog:: /a/lib/lib.d.ts:: Changing to watchFile [12:00:22 AM] Found 0 errors. Watching for file changes. sysLog:: /a/b:: Changing to watchFile @@ -52,7 +56,7 @@ Shape signatures in builder refreshed for:: PolledWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {"pollingInterval":2000} /a/b/commonfile1.ts: {"pollingInterval":250} /a/b/commonfile2.ts: 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 604a02b80c5fb..5a6e77e0dd0e7 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchDirectory-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchDirectory-option.js @@ -50,18 +50,18 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile1.ts: - {"pollingInterval":250} -/a/b/commonfile2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/commonfile1.ts: + {} +/a/b/commonfile2.ts: + {} +/a/lib/lib.d.ts: + {} /a/b: {} 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 0a011219ac546..12fd85a943214 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 @@ -58,7 +58,7 @@ Project '/dev/null/inferredProject1*' (Inferred) ----------------------------------------------- getSemanticDiagnostics:: /c/foo.ts:: 0 -fileExists:: [{"key":"/c/bar.ts","count":1},{"key":"/c/bar.tsx","count":1},{"key":"/c/bar.d.ts","count":2}] +fileExists:: [{"key":"/c/bar.ts","count":1},{"key":"/c/bar.tsx","count":1},{"key":"/c/bar.d.ts","count":3}] directoryExists:: [{"key":"/c","count":1},{"key":"/c/node_modules/@types","count":1},{"key":"/node_modules/@types","count":1}] getDirectories:: [] readFile:: [{"key":"/c/bar.d.ts","count":1}] 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 a5aaa57bc2944..566b98019e4fa 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 @@ -116,7 +116,7 @@ Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) Open files: FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined Projects: /Users/someuser/work/applications/frontend/tsconfig.json -fileExists:: [{"key":"/users/someuser/work/applications/frontend/src/app/utils/cookie.ts","count":1}] +fileExists:: [{"key":"/users/someuser/work/applications/frontend/src/app/utils/cookie.ts","count":1},{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] directoryExists:: [{"key":"/users/someuser/work/applications/frontend/src/app/utils/cookie.ts","count":1}] getDirectories:: [] readFile:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] 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 45c1e3ef41110..ad1f6cb365325 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 @@ -116,7 +116,7 @@ Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) Open files: FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined Projects: /Users/someuser/work/applications/frontend/tsconfig.json -fileExists:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] +fileExists:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":2}] directoryExists:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] getDirectories:: [] readFile:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] 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 d1401533542b6..709d9e1154eab 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 @@ -39,6 +39,12 @@ Creating configuration project /a/b/projects/project/tsconfig.json Scheduled: /a/b/projects/project/tsconfig.json Scheduled: *ensureProjectForOpenFiles* Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Search path: /a/b/projects/project/src +For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json +Scheduled: /a/b/projects/project/tsconfig.json, Cancelled earlier one +Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Running: /a/b/projects/project/tsconfig.json Loading configured project /a/b/projects/project/tsconfig.json Config: /a/b/projects/project/tsconfig.json : { 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 189d235546c2a..2791b14979f29 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 @@ -104,6 +104,12 @@ Creating configuration project /a/b/projects/project/tsconfig.json Scheduled: /a/b/projects/project/tsconfig.json Scheduled: *ensureProjectForOpenFiles* Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Search path: /a/b/projects/project/src +For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json +Scheduled: /a/b/projects/project/tsconfig.json, Cancelled earlier one +Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Running: /a/b/projects/project/tsconfig.json Loading configured project /a/b/projects/project/tsconfig.json Config: /a/b/projects/project/tsconfig.json : { diff --git a/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-in-a-folder-with-loose-files.js b/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-in-a-folder-with-loose-files.js index 626fade0584b1..76eb1a96c4948 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-in-a-folder-with-loose-files.js +++ b/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-in-a-folder-with-loose-files.js @@ -69,6 +69,14 @@ Search path: /user/username/projects/myproject For info: /user/username/projects/myproject/commonFile2.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Scheduled: *ensureProjectForOpenFiles* Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Search path: /user/username/projects/myproject +For info: /user/username/projects/myproject/commonFile1.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Search path: /user/username/projects/myproject +For info: /user/username/projects/myproject/commonFile2.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Running: /user/username/projects/myproject/tsconfig.json Loading configured project /user/username/projects/myproject/tsconfig.json Config: /user/username/projects/myproject/tsconfig.json : { 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 31ab65dea4f71..694d6fd7ae8b9 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 @@ -102,6 +102,10 @@ FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0: Scheduled: /user/username/projects/myproject/dependency/tsconfig.json Scheduled: *ensureProjectForOpenFiles* Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one +Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file request:{"command":"rename","arguments":{"file":"/user/username/projects/myproject/dependency/FnS.ts","line":1,"offset":17},"seq":2,"type":"request"} Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms 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 31ab65dea4f71..694d6fd7ae8b9 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 @@ -102,6 +102,10 @@ FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0: Scheduled: /user/username/projects/myproject/dependency/tsconfig.json Scheduled: *ensureProjectForOpenFiles* Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one +Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file request:{"command":"rename","arguments":{"file":"/user/username/projects/myproject/dependency/FnS.ts","line":1,"offset":17},"seq":2,"type":"request"} Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms 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 31ab65dea4f71..694d6fd7ae8b9 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 @@ -102,6 +102,10 @@ FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0: Scheduled: /user/username/projects/myproject/dependency/tsconfig.json Scheduled: *ensureProjectForOpenFiles* Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one +Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file request:{"command":"rename","arguments":{"file":"/user/username/projects/myproject/dependency/FnS.ts","line":1,"offset":17},"seq":2,"type":"request"} Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms 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 11683870cc857..011ac9bf1232a 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 @@ -166,12 +166,12 @@ request:{"command":"rename","arguments":{"file":"/user/username/projects/myproje Search path: /user/username/projects/myproject/dependency For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json response:{"response":{"info":{"canRename":true,"displayName":"fn1","fullDisplayName":"\"/user/username/projects/myproject/dependency/FnS\".fn1","kind":"function","kindModifiers":"export","triggerSpan":{"start":{"line":1,"offset":17},"end":{"line":1,"offset":20}}},"locs":[{"file":"/user/username/projects/myproject/dependency/FnS.ts","locs":[{"start":{"line":1,"offset":17},"end":{"line":1,"offset":20},"contextStart":{"line":1,"offset":1},"contextEnd":{"line":1,"offset":26}}]},{"file":"/user/username/projects/myproject/main/main.ts","locs":[{"start":{"line":2,"offset":5},"end":{"line":2,"offset":8},"contextStart":{"line":1,"offset":1},"contextEnd":{"line":7,"offset":22}},{"start":{"line":9,"offset":1},"end":{"line":9,"offset":4}}]}]},"responseRequired":true} -FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Scheduled: /user/username/projects/myproject/main/tsconfig.json Scheduled: *ensureProjectForOpenFiles* Scheduled: /user/username/projects/myproject/dependency/tsconfig.json Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Running: /user/username/projects/myproject/main/tsconfig.json Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms 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 f85423f435f04..b548c5cff06a2 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 @@ -166,12 +166,12 @@ request:{"command":"rename","arguments":{"file":"/user/username/projects/myproje Search path: /user/username/projects/myproject/dependency For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json response:{"response":{"info":{"canRename":true,"displayName":"fn1","fullDisplayName":"\"/user/username/projects/myproject/dependency/FnS\".fn1","kind":"function","kindModifiers":"export","triggerSpan":{"start":{"line":1,"offset":17},"end":{"line":1,"offset":20}}},"locs":[{"file":"/user/username/projects/myproject/dependency/FnS.ts","locs":[{"start":{"line":1,"offset":17},"end":{"line":1,"offset":20},"contextStart":{"line":1,"offset":1},"contextEnd":{"line":1,"offset":26}}]},{"file":"/user/username/projects/myproject/main/main.ts","locs":[{"start":{"line":2,"offset":5},"end":{"line":2,"offset":8},"contextStart":{"line":1,"offset":1},"contextEnd":{"line":7,"offset":22}},{"start":{"line":9,"offset":1},"end":{"line":9,"offset":4}}]}]},"responseRequired":true} -FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Scheduled: /user/username/projects/myproject/main/tsconfig.json Scheduled: *ensureProjectForOpenFiles* Scheduled: /user/username/projects/myproject/dependency/tsconfig.json Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info request:{"command":"definitionAndBoundSpan","arguments":{"file":"/user/username/projects/myproject/main/main.ts","line":9,"offset":1},"seq":3,"type":"request"} Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms 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 3ec794427d81d..ccbab9a23eea5 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 @@ -164,6 +164,10 @@ FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0: Scheduled: /user/username/projects/myproject/dependency/tsconfig.json Scheduled: *ensureProjectForOpenFiles* Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one +Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations 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 71bebbbf0dca5..842c917f58143 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 @@ -166,13 +166,13 @@ request:{"command":"rename","arguments":{"file":"/user/username/projects/myproje Search path: /user/username/projects/myproject/dependency For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json response:{"response":{"info":{"canRename":true,"displayName":"fn1","fullDisplayName":"\"/user/username/projects/myproject/dependency/FnS\".fn1","kind":"function","kindModifiers":"export","triggerSpan":{"start":{"line":1,"offset":17},"end":{"line":1,"offset":20}}},"locs":[{"file":"/user/username/projects/myproject/dependency/FnS.ts","locs":[{"start":{"line":1,"offset":17},"end":{"line":1,"offset":20},"contextStart":{"line":1,"offset":1},"contextEnd":{"line":1,"offset":26}}]},{"file":"/user/username/projects/myproject/main/main.ts","locs":[{"start":{"line":2,"offset":5},"end":{"line":2,"offset":8},"contextStart":{"line":1,"offset":1},"contextEnd":{"line":7,"offset":22}},{"start":{"line":9,"offset":1},"end":{"line":9,"offset":4}}]}]},"responseRequired":true} -FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Scheduled: /user/username/projects/myproject/main/tsconfig.json Scheduled: *ensureProjectForOpenFiles* Scheduled: /user/username/projects/myproject/dependency/tsconfig.json Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations 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 f2a0e4aa8513e..85e042a5a244a 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 @@ -177,6 +177,10 @@ FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0: Scheduled: /user/username/projects/myproject/dependency/tsconfig.json Scheduled: *ensureProjectForOpenFiles* Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one +Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations 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 7d518f0795857..f84b0e5248ee6 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 @@ -173,12 +173,12 @@ request:{"command":"rename","arguments":{"file":"/user/username/projects/myproje Search path: /user/username/projects/myproject/dependency For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json response:{"response":{"info":{"canRename":true,"displayName":"fn1","fullDisplayName":"\"/user/username/projects/myproject/dependency/FnS\".fn1","kind":"function","kindModifiers":"export","triggerSpan":{"start":{"line":1,"offset":17},"end":{"line":1,"offset":20}}},"locs":[{"file":"/user/username/projects/myproject/dependency/FnS.ts","locs":[{"start":{"line":1,"offset":17},"end":{"line":1,"offset":20},"contextStart":{"line":1,"offset":1},"contextEnd":{"line":1,"offset":26}}]},{"file":"/user/username/projects/myproject/main/main.ts","locs":[{"start":{"line":2,"offset":5},"end":{"line":2,"offset":8},"contextStart":{"line":1,"offset":1},"contextEnd":{"line":7,"offset":22}},{"start":{"line":9,"offset":1},"end":{"line":9,"offset":4}}]}]},"responseRequired":true} -FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Scheduled: /user/username/projects/myproject/main/tsconfig.json Scheduled: *ensureProjectForOpenFiles* Scheduled: /user/username/projects/myproject/dependency/tsconfig.json Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Running: /user/username/projects/myproject/main/tsconfig.json Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms 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 a9a1e53714aae..b11aec0793c44 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 @@ -173,12 +173,12 @@ request:{"command":"rename","arguments":{"file":"/user/username/projects/myproje Search path: /user/username/projects/myproject/dependency For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json response:{"response":{"info":{"canRename":true,"displayName":"fn1","fullDisplayName":"\"/user/username/projects/myproject/dependency/FnS\".fn1","kind":"function","kindModifiers":"export","triggerSpan":{"start":{"line":1,"offset":17},"end":{"line":1,"offset":20}}},"locs":[{"file":"/user/username/projects/myproject/dependency/FnS.ts","locs":[{"start":{"line":1,"offset":17},"end":{"line":1,"offset":20},"contextStart":{"line":1,"offset":1},"contextEnd":{"line":1,"offset":26}}]},{"file":"/user/username/projects/myproject/main/main.ts","locs":[{"start":{"line":2,"offset":5},"end":{"line":2,"offset":8},"contextStart":{"line":1,"offset":1},"contextEnd":{"line":7,"offset":22}},{"start":{"line":9,"offset":1},"end":{"line":9,"offset":4}}]}]},"responseRequired":true} -FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Scheduled: /user/username/projects/myproject/main/tsconfig.json Scheduled: *ensureProjectForOpenFiles* Scheduled: /user/username/projects/myproject/dependency/tsconfig.json Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info request:{"command":"definitionAndBoundSpan","arguments":{"file":"/user/username/projects/myproject/main/main.ts","line":9,"offset":1},"seq":3,"type":"request"} Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms 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 1242a723cce64..f30984a1ce2ea 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 @@ -171,6 +171,10 @@ FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0: Scheduled: /user/username/projects/myproject/dependency/tsconfig.json Scheduled: *ensureProjectForOpenFiles* Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one +Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations 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 7bf815aecfbbc..910c1d02bdebc 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 @@ -173,13 +173,13 @@ request:{"command":"rename","arguments":{"file":"/user/username/projects/myproje Search path: /user/username/projects/myproject/dependency For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json response:{"response":{"info":{"canRename":true,"displayName":"fn1","fullDisplayName":"\"/user/username/projects/myproject/dependency/FnS\".fn1","kind":"function","kindModifiers":"export","triggerSpan":{"start":{"line":1,"offset":17},"end":{"line":1,"offset":20}}},"locs":[{"file":"/user/username/projects/myproject/dependency/FnS.ts","locs":[{"start":{"line":1,"offset":17},"end":{"line":1,"offset":20},"contextStart":{"line":1,"offset":1},"contextEnd":{"line":1,"offset":26}}]},{"file":"/user/username/projects/myproject/main/main.ts","locs":[{"start":{"line":2,"offset":5},"end":{"line":2,"offset":8},"contextStart":{"line":1,"offset":1},"contextEnd":{"line":7,"offset":22}},{"start":{"line":9,"offset":1},"end":{"line":9,"offset":4}}]}]},"responseRequired":true} -FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Scheduled: /user/username/projects/myproject/main/tsconfig.json Scheduled: *ensureProjectForOpenFiles* Scheduled: /user/username/projects/myproject/dependency/tsconfig.json Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations 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 de565809438fb..43228a826e3e2 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 @@ -104,10 +104,10 @@ request:{"command":"definitionAndBoundSpan","arguments":{"file":"/user/username/ FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info response:{"response":{"definitions":[{"file":"/user/username/projects/myproject/dependency/FnS.ts","start":{"line":1,"offset":17},"end":{"line":1,"offset":20},"contextStart":{"line":1,"offset":1},"contextEnd":{"line":1,"offset":26}}],"textSpan":{"start":{"line":9,"offset":1},"end":{"line":9,"offset":4}}},"responseRequired":true} -FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Scheduled: /user/username/projects/myproject/main/tsconfig.json Scheduled: *ensureProjectForOpenFiles* -Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Running: /user/username/projects/myproject/main/tsconfig.json Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms 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 174eac23cbb56..42ecc5b3b2ed2 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 @@ -104,10 +104,10 @@ request:{"command":"definitionAndBoundSpan","arguments":{"file":"/user/username/ FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info response:{"response":{"definitions":[{"file":"/user/username/projects/myproject/dependency/FnS.ts","start":{"line":1,"offset":17},"end":{"line":1,"offset":20},"contextStart":{"line":1,"offset":1},"contextEnd":{"line":1,"offset":26}}],"textSpan":{"start":{"line":9,"offset":1},"end":{"line":9,"offset":4}}},"responseRequired":true} -FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Scheduled: /user/username/projects/myproject/main/tsconfig.json Scheduled: *ensureProjectForOpenFiles* -Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info request:{"command":"definitionAndBoundSpan","arguments":{"file":"/user/username/projects/myproject/main/main.ts","line":9,"offset":1},"seq":2,"type":"request"} Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms 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 e3e008043b8da..c437c23f21040 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 @@ -104,11 +104,11 @@ request:{"command":"definitionAndBoundSpan","arguments":{"file":"/user/username/ FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info response:{"response":{"definitions":[{"file":"/user/username/projects/myproject/dependency/FnS.ts","start":{"line":1,"offset":17},"end":{"line":1,"offset":20},"contextStart":{"line":1,"offset":1},"contextEnd":{"line":1,"offset":26}}],"textSpan":{"start":{"line":9,"offset":1},"end":{"line":9,"offset":4}}},"responseRequired":true} -FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Scheduled: /user/username/projects/myproject/main/tsconfig.json Scheduled: *ensureProjectForOpenFiles* -Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations 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 62b2090dad268..754a40f4124f6 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 @@ -125,10 +125,10 @@ request:{"command":"definitionAndBoundSpan","arguments":{"file":"/user/username/ FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info response:{"response":{"definitions":[{"file":"/user/username/projects/myproject/dependency/FnS.ts","start":{"line":1,"offset":17},"end":{"line":1,"offset":20},"contextStart":{"line":1,"offset":1},"contextEnd":{"line":1,"offset":26}}],"textSpan":{"start":{"line":9,"offset":1},"end":{"line":9,"offset":4}}},"responseRequired":true} -FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Scheduled: /user/username/projects/myproject/main/tsconfig.json Scheduled: *ensureProjectForOpenFiles* -Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Running: /user/username/projects/myproject/main/tsconfig.json Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms 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 118fdbb3f7e38..b140b4d7a3f69 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 @@ -125,10 +125,10 @@ request:{"command":"definitionAndBoundSpan","arguments":{"file":"/user/username/ FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info response:{"response":{"definitions":[{"file":"/user/username/projects/myproject/dependency/FnS.ts","start":{"line":1,"offset":17},"end":{"line":1,"offset":20},"contextStart":{"line":1,"offset":1},"contextEnd":{"line":1,"offset":26}}],"textSpan":{"start":{"line":9,"offset":1},"end":{"line":9,"offset":4}}},"responseRequired":true} -FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Scheduled: /user/username/projects/myproject/main/tsconfig.json Scheduled: *ensureProjectForOpenFiles* -Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info request:{"command":"definitionAndBoundSpan","arguments":{"file":"/user/username/projects/myproject/main/main.ts","line":9,"offset":1},"seq":2,"type":"request"} Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms 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 041386435cc20..f5e6087c2b6d3 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 @@ -125,11 +125,11 @@ request:{"command":"definitionAndBoundSpan","arguments":{"file":"/user/username/ FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info response:{"response":{"definitions":[{"file":"/user/username/projects/myproject/dependency/FnS.ts","start":{"line":1,"offset":17},"end":{"line":1,"offset":20},"contextStart":{"line":1,"offset":1},"contextEnd":{"line":1,"offset":26}}],"textSpan":{"start":{"line":9,"offset":1},"end":{"line":9,"offset":4}}},"responseRequired":true} -FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Scheduled: /user/username/projects/myproject/main/tsconfig.json Scheduled: *ensureProjectForOpenFiles* -Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations 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 fba89e3066e60..50bf40b784b13 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 @@ -243,8 +243,6 @@ Open files: got projects updated in background, updating diagnostics for /users/username/projects/project/b.ts,/users/username/projects/project/sub/a.ts event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/users/username/projects/project/b.ts","/users/username/projects/project/sub/a.ts"]}} -FileWatcher:: Triggered with /users/username/projects/project/a.ts 2:: WatchInfo: /users/username/projects/project/a.ts 500 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Missing file -Elapsed:: *ms FileWatcher:: Triggered with /users/username/projects/project/a.ts 2:: WatchInfo: /users/username/projects/project/a.ts 500 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Missing file DirectoryWatcher:: Triggered with /users/username/projects/project/a.ts :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Scheduled: /users/username/projects/project/tsconfig.json Scheduled: *ensureProjectForOpenFiles* 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 a6a2e5a768d96..c9e26df4436f8 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 @@ -31,11 +31,11 @@ Open files: response:{"responseRequired":false} request:{"seq":0,"type":"request","command":"semanticDiagnosticsSync","arguments":{"file":"/a/b/commonFile1.ts"}} response:{"response":[{"start":{"line":2,"offset":29},"end":{"line":2,"offset":30},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":1,"offset":22},"end":{"line":1,"offset":36},"text":"File '/a/b/commonFile2.ts' not found.","code":6053,"category":"error"}],"responseRequired":true} -FileWatcher:: Triggered with /a/b/commonFile2.ts 0:: WatchInfo: /a/b/commonfile2.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +FileWatcher:: Triggered with /a/b/commonfile2.ts 0:: WatchInfo: /a/b/commonfile2.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file FileWatcher:: Close:: WatchInfo: /a/b/commonfile2.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file Scheduled: /dev/null/inferredProject1* Scheduled: *ensureProjectForOpenFiles* -Elapsed:: *ms FileWatcher:: Triggered with /a/b/commonFile2.ts 0:: WatchInfo: /a/b/commonfile2.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Elapsed:: *ms FileWatcher:: Triggered with /a/b/commonfile2.ts 0:: WatchInfo: /a/b/commonfile2.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file Running: /dev/null/inferredProject1* Starting updateGraphWorker: Project: /dev/null/inferredProject1* FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 undefined WatchType: Closed Script info 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 c8610d515f835..b3db2e68701b1 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 @@ -40,10 +40,10 @@ Open files: FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined Projects: /user/username/projects/myproject/project.csproj PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: 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 624b26d0178ae..b9212cba880f2 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options.js @@ -40,10 +40,10 @@ Open files: FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined Projects: /user/username/projects/myproject/project.csproj PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: diff --git a/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js b/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js index 694df888bc381..d1ff5ea66f691 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js @@ -44,16 +44,16 @@ Open files: FileName: c:/project/file1.ts ProjectRootPath: undefined Projects: c:/project/tsconfig.json PolledWatches:: -c:/project/tsconfig.json: - {"pollingInterval":250} -c:/project/file2.ts: - {"pollingInterval":250} -c:/a/lib/lib.d.ts: - {"pollingInterval":250} c:/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +c:/project/tsconfig.json: + {} +c:/project/file2.ts: + {} +c:/a/lib/lib.d.ts: + {} FsWatchesRecursive:: c:/project: 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 694df888bc381..d1ff5ea66f691 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 @@ -44,16 +44,16 @@ Open files: FileName: c:/project/file1.ts ProjectRootPath: undefined Projects: c:/project/tsconfig.json PolledWatches:: -c:/project/tsconfig.json: - {"pollingInterval":250} -c:/project/file2.ts: - {"pollingInterval":250} -c:/a/lib/lib.d.ts: - {"pollingInterval":250} c:/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +c:/project/tsconfig.json: + {} +c:/project/file2.ts: + {} +c:/a/lib/lib.d.ts: + {} FsWatchesRecursive:: c:/project: 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 628ebcefb5913..efc7cb96512c0 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-root.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-root.js @@ -46,18 +46,18 @@ Open files: FileName: c:/myfolder/allproject/project/file1.ts ProjectRootPath: undefined Projects: c:/myfolder/allproject/project/tsconfig.json PolledWatches:: -c:/myfolder/allproject/project/tsconfig.json: - {"pollingInterval":250} -c:/myfolder/allproject/project/file2.ts: - {"pollingInterval":250} -c:/a/lib/lib.d.ts: - {"pollingInterval":250} c:/myfolder/allproject/project/node_modules/@types: {"pollingInterval":500} c:/myfolder/allproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +c:/myfolder/allproject/project/tsconfig.json: + {} +c:/myfolder/allproject/project/file2.ts: + {} +c:/a/lib/lib.d.ts: + {} FsWatchesRecursive:: c:/myfolder/allproject/project: 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 628ebcefb5913..efc7cb96512c0 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 @@ -46,18 +46,18 @@ Open files: FileName: c:/myfolder/allproject/project/file1.ts ProjectRootPath: undefined Projects: c:/myfolder/allproject/project/tsconfig.json PolledWatches:: -c:/myfolder/allproject/project/tsconfig.json: - {"pollingInterval":250} -c:/myfolder/allproject/project/file2.ts: - {"pollingInterval":250} -c:/a/lib/lib.d.ts: - {"pollingInterval":250} c:/myfolder/allproject/project/node_modules/@types: {"pollingInterval":500} c:/myfolder/allproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +c:/myfolder/allproject/project/tsconfig.json: + {} +c:/myfolder/allproject/project/file2.ts: + {} +c:/a/lib/lib.d.ts: + {} FsWatchesRecursive:: c:/myfolder/allproject/project: 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 32815b880a611..c9375786ca9f0 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 @@ -42,17 +42,17 @@ Open files: Projects: /dev/null/inferredProject1* PolledWatches:: /user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/jsconfig.json: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} + {"pollingInterval":2000} FsWatches:: +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: 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 b0a391964c921..b252a24870fe6 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options.js @@ -42,17 +42,17 @@ Open files: Projects: /dev/null/inferredProject1* PolledWatches:: /user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/myproject/jsconfig.json: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} + {"pollingInterval":2000} FsWatches:: +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/node_modules: 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 a9e3c90143a93..114d4d3fd9194 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 @@ -32,16 +32,16 @@ Open files: Projects: /dev/null/inferredProject1* PolledWatches:: /user/username/projects/i/tsconfig.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/i/jsconfig.json: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/i/node_modules: {"pollingInterval":500} /user/username/projects/i/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 01401000fe02c..29dea3e006faf 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 @@ -32,16 +32,16 @@ Open files: Projects: /dev/null/inferredProject1* PolledWatches:: /user/username/projects/i/tsconfig.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/i/jsconfig.json: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/i/node_modules: {"pollingInterval":500} /user/username/projects/i/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 cf4b40d7f15d7..4111eece27f30 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 @@ -32,16 +32,16 @@ Open files: Projects: /dev/null/inferredProject1* PolledWatches:: /user/username/projects/İ/tsconfig.json: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/İ/jsconfig.json: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} + {"pollingInterval":2000} /user/username/projects/İ/node_modules: {"pollingInterval":500} /user/username/projects/İ/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 e2ee0529cd987..da07c4a3e2044 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 @@ -48,141 +48,141 @@ Open files: FileName: /a/username/project/src/index.ts ProjectRootPath: undefined Projects: /a/username/project/tsconfig.json PolledWatches:: -/a/username/project/tsconfig.json: - {"pollingInterval":250} -/a/username/project/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/username/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/username/project/tsconfig.json: + {} /a/username/project: {} /a/username/project/node_modules: {} /a/username/project/src: {} +/a/username/project/src/file1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: PolledWatches:: -/a/username/project/tsconfig.json: - {"pollingInterval":250} -/a/username/project/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/username/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/username/project/tsconfig.json: + {} /a/username/project: {} /a/username/project/node_modules: {} /a/username/project/src: {} +/a/username/project/src/file1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: PolledWatches:: -/a/username/project/tsconfig.json: - {"pollingInterval":250} -/a/username/project/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/username/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/username/project/tsconfig.json: + {} /a/username/project: {} /a/username/project/node_modules: {} /a/username/project/src: {} +/a/username/project/src/file1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: PolledWatches:: -/a/username/project/tsconfig.json: - {"pollingInterval":250} -/a/username/project/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/username/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/username/project/tsconfig.json: + {} /a/username/project: {} /a/username/project/node_modules: {} /a/username/project/src: {} +/a/username/project/src/file1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: PolledWatches:: -/a/username/project/tsconfig.json: - {"pollingInterval":250} -/a/username/project/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/username/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/username/project/tsconfig.json: + {} /a/username/project: {} /a/username/project/node_modules: {} /a/username/project/src: {} +/a/username/project/src/file1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: PolledWatches:: -/a/username/project/tsconfig.json: - {"pollingInterval":250} -/a/username/project/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/username/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/username/project/tsconfig.json: + {} /a/username/project: {} /a/username/project/node_modules: {} /a/username/project/src: {} +/a/username/project/src/file1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: PolledWatches:: -/a/username/project/tsconfig.json: - {"pollingInterval":250} -/a/username/project/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/username/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/username/project/tsconfig.json: + {} /a/username/project: {} /a/username/project/node_modules: {} /a/username/project/src: {} +/a/username/project/src/file1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 1ebf273559ff5..70d4649e9d5f4 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 @@ -53,14 +53,14 @@ Open files: Projects: /a/username/project/tsconfig.json Completion Entries:: ["file1"] PolledWatches:: + +FsWatches:: /a/username/project/tsconfig.json: - {"pollingInterval":250} + {} /a/username/project/src/file1.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: @@ -96,15 +96,15 @@ Project '/a/username/project/tsconfig.json' (Configured) ----------------------------------------------- Completion Entries:: ["file1","file2"] PolledWatches:: + +FsWatches:: /a/username/project/tsconfig.json: - {"pollingInterval":250} + {} /a/username/project/src/file1.ts: - {"pollingInterval":250} + {} /a/lib/lib.d.ts: - {"pollingInterval":250} + {} /a/username/project/src/file2.ts: - {"pollingInterval":250} - -FsWatches:: + {} FsWatchesRecursive:: 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 afdbb347d7a21..f60c02e93f069 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 @@ -53,20 +53,20 @@ Open files: Projects: /a/username/project/tsconfig.json Completion Entries:: ["file1"] PolledWatches:: -/a/username/project/tsconfig.json: - {"pollingInterval":250} -/a/username/project/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/username/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/username/project/tsconfig.json: + {} /a/username/project: {} /a/username/project/src: {} +/a/username/project/src/file1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -119,21 +119,21 @@ Open files: Projects: /a/username/project/tsconfig.json Completion Entries:: ["file1","file2"] PolledWatches:: -/a/username/project/tsconfig.json: - {"pollingInterval":250} -/a/username/project/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/username/project/node_modules/@types: {"pollingInterval":500} -/a/username/project/src/file2.ts: - {"pollingInterval":250} FsWatches:: +/a/username/project/tsconfig.json: + {} /a/username/project: {} /a/username/project/src: {} +/a/username/project/src/file1.ts: + {} +/a/lib/lib.d.ts: + {} +/a/username/project/src/file2.ts: + {} FsWatchesRecursive:: 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 2cf76ad15e781..73fa1236a50ea 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 @@ -53,20 +53,20 @@ Open files: Projects: /a/username/project/tsconfig.json Completion Entries:: ["file1"] PolledWatches:: -/a/username/project/tsconfig.json: - {"pollingInterval":250} /a/username/project: {"pollingInterval":500} /a/username/project/src: {"pollingInterval":500} -/a/username/project/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/username/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/username/project/tsconfig.json: + {} +/a/username/project/src/file1.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -103,21 +103,21 @@ Project '/a/username/project/tsconfig.json' (Configured) ----------------------------------------------- Completion Entries:: ["file1","file2"] PolledWatches:: -/a/username/project/tsconfig.json: - {"pollingInterval":250} /a/username/project: {"pollingInterval":500} /a/username/project/src: {"pollingInterval":500} -/a/username/project/src/file1.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/username/project/node_modules/@types: {"pollingInterval":500} -/a/username/project/src/file2.ts: - {"pollingInterval":250} FsWatches:: +/a/username/project/tsconfig.json: + {} +/a/username/project/src/file1.ts: + {} +/a/lib/lib.d.ts: + {} +/a/username/project/src/file2.ts: + {} FsWatchesRecursive:: 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 ec9336aa92885..7c45cec458c64 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 @@ -31,15 +31,15 @@ Open files: Projects: /dev/null/inferredProject1* PolledWatches:: c:/myprojects/project/tsconfig.json: - {"pollingInterval":250} + {"pollingInterval":2000} c:/myprojects/project/jsconfig.json: - {"pollingInterval":250} -c:/a/lib/lib.d.ts: - {"pollingInterval":250} + {"pollingInterval":2000} c:/myprojects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +c:/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -76,15 +76,15 @@ Open files: Projects: /dev/null/inferredProject1* PolledWatches:: //vda1cs4850/myprojects/project/tsconfig.json: - {"pollingInterval":250} + {"pollingInterval":2000} //vda1cs4850/myprojects/project/jsconfig.json: - {"pollingInterval":250} -//vda1cs4850/a/lib/lib.d.ts: - {"pollingInterval":250} + {"pollingInterval":2000} //vda1cs4850/myprojects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +//vda1cs4850/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -121,15 +121,15 @@ Open files: Projects: /dev/null/inferredProject1* PolledWatches:: //vda1cs4850/c$/myprojects/project/tsconfig.json: - {"pollingInterval":250} + {"pollingInterval":2000} //vda1cs4850/c$/myprojects/project/jsconfig.json: - {"pollingInterval":250} -//vda1cs4850/a/lib/lib.d.ts: - {"pollingInterval":250} + {"pollingInterval":2000} //vda1cs4850/c$/myprojects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +//vda1cs4850/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -166,15 +166,15 @@ Open files: Projects: /dev/null/inferredProject1* PolledWatches:: c:/users/username/myprojects/project/tsconfig.json: - {"pollingInterval":250} + {"pollingInterval":2000} c:/users/username/myprojects/project/jsconfig.json: - {"pollingInterval":250} -c:/a/lib/lib.d.ts: - {"pollingInterval":250} + {"pollingInterval":2000} c:/users/username/myprojects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +c:/a/lib/lib.d.ts: + {} FsWatchesRecursive:: @@ -211,14 +211,14 @@ Open files: Projects: /dev/null/inferredProject1* PolledWatches:: //vda1cs4850/c$/users/username/myprojects/project/tsconfig.json: - {"pollingInterval":250} + {"pollingInterval":2000} //vda1cs4850/c$/users/username/myprojects/project/jsconfig.json: - {"pollingInterval":250} -//vda1cs4850/a/lib/lib.d.ts: - {"pollingInterval":250} + {"pollingInterval":2000} //vda1cs4850/c$/users/username/myprojects/project/node_modules/@types: {"pollingInterval":500} FsWatches:: +//vda1cs4850/a/lib/lib.d.ts: + {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-can-create-multiple-watchers-per-file.js b/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-can-create-multiple-watchers-per-file.js index f272617ba5112..73e3589eb9834 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-can-create-multiple-watchers-per-file.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-can-create-multiple-watchers-per-file.js @@ -54,17 +54,18 @@ Open files: response:{"responseRequired":false} PolledWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} {"pollingInterval":500} - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} + {} /user/username/projects/myproject: {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 d62d018331fdd..73e3589eb9834 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 @@ -54,15 +54,18 @@ Open files: response:{"responseRequired":false} PolledWatches:: /user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} + {} /user/username/projects/myproject: {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject: 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 139cb63dae034..22545a39f6506 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 @@ -56,12 +56,12 @@ Open files: FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined Projects: /user/username/projects/myproject/tsconfig.json PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: 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 f7e24cd1459be..159474f3382c8 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 @@ -56,12 +56,12 @@ Open files: FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined Projects: /user/username/projects/myproject/tsconfig.json PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: 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 cb3c25304bfed..7c7352cc1590b 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 @@ -52,13 +52,13 @@ Open files: response:{"responseRequired":false} PolledWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {"pollingInterval":2000} /a/b: {"pollingInterval":500} /a/b/commonfile2.ts: - {"pollingInterval":250} + {"pollingInterval":500} /a/lib/lib.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /a/b/node_modules/@types: {"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 dab46d1009b6d..c4f52116d7a2b 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 @@ -55,13 +55,13 @@ Open files: response:{"responseRequired":false} PolledWatches:: /a/b/tsconfig.json: - {"pollingInterval":250} + {"pollingInterval":2000} /a/b: {"pollingInterval":500} /a/b/commonfile2.ts: - {"pollingInterval":250} + {"pollingInterval":500} /a/lib/lib.d.ts: - {"pollingInterval":250} + {"pollingInterval":500} /a/b/node_modules/@types: {"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 5e79c6cc07c10..b5b2c7ca3ee3e 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 @@ -51,17 +51,17 @@ Open files: Projects: /a/b/tsconfig.json response:{"responseRequired":false} PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} /a/b: {} +/a/b/commonfile2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 5e12f7c597a05..818da4a845a98 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 @@ -51,17 +51,17 @@ Open files: Projects: /a/b/tsconfig.json response:{"responseRequired":false} PolledWatches:: -/a/b/tsconfig.json: - {"pollingInterval":250} -/a/b/commonfile2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: +/a/b/tsconfig.json: + {} /a/b: {} +/a/b/commonfile2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: 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 11a7a75cbe100..4e94ac62f5e5f 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 @@ -51,16 +51,16 @@ Open files: Projects: /a/b/tsconfig.json response:{"responseRequired":false} PolledWatches:: -/a/b/commonfile2.ts: - {"pollingInterval":250} -/a/lib/lib.d.ts: - {"pollingInterval":250} /a/b/node_modules/@types: {"pollingInterval":500} FsWatches:: /a/b/tsconfig.json: {} +/a/b/commonfile2.ts: + {} +/a/lib/lib.d.ts: + {} FsWatchesRecursive:: /a/b: From 4d753d30ce4e28c7f259313ae11a95bfffd207dd Mon Sep 17 00:00:00 2001 From: Sheetal Nandi Date: Mon, 15 Aug 2022 15:11:42 -0700 Subject: [PATCH 5/8] Some refactoring --- src/compiler/sys.ts | 57 +- src/harness/virtualFileSystemWithWatch.ts | 8 +- .../tsbuildWatch/watchEnvironment.ts | 215 ++++--- .../unittests/tsserver/watchEnvironment.ts | 48 +- .../same-file-in-multiple-projects.js | 555 ------------------ ...e-can-create-multiple-watchers-per-file.js | 72 --- 6 files changed, 146 insertions(+), 809 deletions(-) delete mode 100644 tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects.js delete mode 100644 tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-can-create-multiple-watchers-per-file.js diff --git a/src/compiler/sys.ts b/src/compiler/sys.ts index 02d68f3fa34d9..c0d29c925fc22 100644 --- a/src/compiler/sys.ts +++ b/src/compiler/sys.ts @@ -35,8 +35,7 @@ namespace ts { export type FileWatcherCallback = (fileName: string, eventKind: FileWatcherEventKind, modifiedTime?: Date) => void; export type DirectoryWatcherCallback = (fileName: string) => void; - /*@internal*/ - export interface WatchedFile { + interface WatchedFile { readonly fileName: string; readonly callback: FileWatcherCallback; mtime: Date; @@ -81,8 +80,7 @@ namespace ts { /* @internal */ export let unchangedPollThresholds = createPollingIntervalBasedLevels(defaultChunkLevels); - /* @internal */ - export function setCustomPollingValues(system: System) { + function setCustomPollingValues(system: System) { if (!system.getEnvironmentVariable) { return; } @@ -189,31 +187,28 @@ namespace ts { } } - /* @internal */ - export function createDynamicPriorityPollingWatchFile(host: { + interface WatchedFileWithUnchangedPolls extends WatchedFileWithIsClosed { + unchangedPolls: number; + } + function createDynamicPriorityPollingWatchFile(host: { getModifiedTime: NonNullable; setTimeout: NonNullable; }): HostWatchFile { - interface WatchedFile extends ts.WatchedFile { - isClosed?: boolean; - unchangedPolls: number; - } - - interface PollingIntervalQueue extends Array { + interface PollingIntervalQueue extends Array { pollingInterval: PollingInterval; pollIndex: number; pollScheduled: boolean; } - const watchedFiles: WatchedFile[] = []; - const changedFilesInLastPoll: WatchedFile[] = []; + const watchedFiles: WatchedFileWithUnchangedPolls[] = []; + const changedFilesInLastPoll: WatchedFileWithUnchangedPolls[] = []; const lowPollingIntervalQueue = createPollingIntervalQueue(PollingInterval.Low); const mediumPollingIntervalQueue = createPollingIntervalQueue(PollingInterval.Medium); const highPollingIntervalQueue = createPollingIntervalQueue(PollingInterval.High); return watchFile; function watchFile(fileName: string, callback: FileWatcherCallback, defaultPollingInterval: PollingInterval): FileWatcher { - const file: WatchedFile = { + const file: WatchedFileWithUnchangedPolls = { fileName, callback, unchangedPolls: 0, @@ -233,7 +228,7 @@ namespace ts { } function createPollingIntervalQueue(pollingInterval: PollingInterval): PollingIntervalQueue { - const queue = [] as WatchedFile[] as PollingIntervalQueue; + const queue = [] as WatchedFileWithUnchangedPolls[] as PollingIntervalQueue; queue.pollingInterval = pollingInterval; queue.pollIndex = 0; queue.pollScheduled = false; @@ -265,7 +260,7 @@ namespace ts { } } - function pollQueue(queue: (WatchedFile | undefined)[], pollingInterval: PollingInterval, pollIndex: number, chunkSize: number) { + function pollQueue(queue: (WatchedFileWithUnchangedPolls | undefined)[], pollingInterval: PollingInterval, pollIndex: number, chunkSize: number) { return pollWatchedFileQueue( host, queue, @@ -274,7 +269,7 @@ namespace ts { onWatchFileStat ); - function onWatchFileStat(watchedFile: WatchedFile, pollIndex: number, fileChanged: boolean) { + function onWatchFileStat(watchedFile: WatchedFileWithUnchangedPolls, pollIndex: number, fileChanged: boolean) { if (fileChanged) { watchedFile.unchangedPolls = 0; // Changed files go to changedFilesInLastPoll queue @@ -311,12 +306,12 @@ namespace ts { } } - function addToPollingIntervalQueue(file: WatchedFile, pollingInterval: PollingInterval) { + function addToPollingIntervalQueue(file: WatchedFileWithUnchangedPolls, pollingInterval: PollingInterval) { pollingIntervalQueue(pollingInterval).push(file); scheduleNextPollIfNotAlreadyScheduled(pollingInterval); } - function addChangedFileToLowPollingIntervalQueue(file: WatchedFile) { + function addChangedFileToLowPollingIntervalQueue(file: WatchedFileWithUnchangedPolls) { changedFilesInLastPoll.push(file); scheduleNextPollIfNotAlreadyScheduled(PollingInterval.Low); } @@ -423,8 +418,7 @@ namespace ts { } } - /* @internal */ - export function createSingleFileWatcherPerName( + function createSingleFileWatcherPerName( watchFile: HostWatchFile, useCaseSensitiveFileNames: boolean ): HostWatchFile { @@ -474,8 +468,7 @@ namespace ts { /** * Returns true if file status changed */ - /*@internal*/ - export function onWatchedFileStat(watchedFile: WatchedFile, modifiedTime: Date): boolean { + function onWatchedFileStat(watchedFile: WatchedFile, modifiedTime: Date): boolean { const oldTime = watchedFile.mtime.getTime(); const newTime = modifiedTime.getTime(); if (oldTime !== newTime) { @@ -512,8 +505,7 @@ namespace ts { curSysLog = logger; } - /*@internal*/ - export interface RecursiveDirectoryWatcherHost { + interface RecursiveDirectoryWatcherHost { watchDirectory: HostWatchDirectory; useCaseSensitiveFileNames: boolean; getCurrentDirectory: System["getCurrentDirectory"]; @@ -529,8 +521,7 @@ namespace ts { * that means if this is recursive watcher, watch the children directories as well * (eg on OS that dont support recursive watch using fs.watch use fs.watchFile) */ - /*@internal*/ - export function createDirectoryWatcherSupportingRecursive({ + function createDirectoryWatcherSupportingRecursive({ watchDirectory, useCaseSensitiveFileNames, getCurrentDirectory, @@ -792,8 +783,7 @@ namespace ts { Directory, } - /*@internal*/ - export function createFileWatcherCallback(callback: FsWatchCallback): FileWatcherCallback { + function createFileWatcherCallback(callback: FsWatchCallback): FileWatcherCallback { return (_fileName, eventKind, modifiedTime) => callback(eventKind === FileWatcherEventKind.Changed ? "change" : "rename", "", modifiedTime); } @@ -854,7 +844,7 @@ namespace ts { /*@internal*/ export interface CreateSystemWatchFunctions { // Polling watch file - pollingWatchFile: HostWatchFile; + pollingWatchFileWorker: HostWatchFile; // For dynamic polling watch file getModifiedTime: NonNullable; setTimeout: NonNullable; @@ -878,7 +868,7 @@ namespace ts { /*@internal*/ export function createSystemWatchFunctions({ - pollingWatchFile, + pollingWatchFileWorker, getModifiedTime, setTimeout, clearTimeout, @@ -896,6 +886,7 @@ namespace ts { inodeWatching, sysLog, }: CreateSystemWatchFunctions): { watchFile: HostWatchFile; watchDirectory: HostWatchDirectory; } { + const pollingWatchFile = createSingleFileWatcherPerName(pollingWatchFileWorker, useCaseSensitiveFileNames); let dynamicPollingWatchFile: HostWatchFile | undefined; let fixedChunkSizePollingWatchFile: HostWatchFile | undefined; let nonPollingWatchFile: HostWatchFile | undefined; @@ -1445,7 +1436,7 @@ namespace ts { const fsSupportsRecursiveFsWatch = isNode4OrLater && (process.platform === "win32" || process.platform === "darwin"); const getCurrentDirectory = memoize(() => process.cwd()); const { watchFile, watchDirectory } = createSystemWatchFunctions({ - pollingWatchFile: createSingleFileWatcherPerName(fsWatchFileWorker, useCaseSensitiveFileNames), + pollingWatchFileWorker: fsWatchFileWorker, getModifiedTime, setTimeout, clearTimeout, diff --git a/src/harness/virtualFileSystemWithWatch.ts b/src/harness/virtualFileSystemWithWatch.ts index 34abdcce526fc..3006a3f1ffdb3 100644 --- a/src/harness/virtualFileSystemWithWatch.ts +++ b/src/harness/virtualFileSystemWithWatch.ts @@ -308,7 +308,6 @@ interface Array { length: number; [n: number]: T; }` export enum Tsc_WatchFile { DynamicPolling = "DynamicPriorityPolling", - SingleFileWatcherPerName = "SingleFileWatcherPerName" } export enum Tsc_WatchDirectory { @@ -386,12 +385,7 @@ interface Array { length: number; [n: number]: T; }` // We dont have polling watch file // it is essentially fsWatch but lets get that separate from fsWatch and // into watchedFiles for easier testing - pollingWatchFile: tscWatchFile === Tsc_WatchFile.SingleFileWatcherPerName ? - createSingleFileWatcherPerName( - this.watchFileWorker.bind(this), - this.useCaseSensitiveFileNames - ) : - this.watchFileWorker.bind(this), + pollingWatchFileWorker: this.watchFileWorker.bind(this), getModifiedTime: this.getModifiedTime.bind(this), setTimeout: this.setTimeout.bind(this), clearTimeout: this.clearTimeout.bind(this), diff --git a/src/testRunner/unittests/tsbuildWatch/watchEnvironment.ts b/src/testRunner/unittests/tsbuildWatch/watchEnvironment.ts index 24902756eefe2..053719a368094 100644 --- a/src/testRunner/unittests/tsbuildWatch/watchEnvironment.ts +++ b/src/testRunner/unittests/tsbuildWatch/watchEnvironment.ts @@ -1,124 +1,111 @@ namespace ts.tscWatch { describe("unittests:: tsbuildWatch:: watchEnvironment:: tsbuild:: watchMode:: with different watch environments", () => { - describe("when watchFile can create multiple watchers per file", () => { - verifyWatchFileOnMultipleProjects(/*singleWatchPerFile*/ false); - }); - - describe("when watchFile is single watcher per file", () => { - verifyWatchFileOnMultipleProjects( - /*singleWatchPerFile*/ true, - arrayToMap(["TSC_WATCHFILE"], identity, () => TestFSWithWatch.Tsc_WatchFile.SingleFileWatcherPerName) - ); - }); + it("watchFile on same file multiple times because file is part of multiple projects", () => { + const project = `${TestFSWithWatch.tsbuildProjectsLocation}/myproject`; + let maxPkgs = 4; + const configPath = `${project}/tsconfig.json`; + const typing: File = { + path: `${project}/typings/xterm.d.ts`, + content: "export const typing = 10;" + }; - function verifyWatchFileOnMultipleProjects(singleWatchPerFile: boolean, environmentVariables?: ESMap) { - it("watchFile on same file multiple times because file is part of multiple projects", () => { - const project = `${TestFSWithWatch.tsbuildProjectsLocation}/myproject`; - let maxPkgs = 4; - const configPath = `${project}/tsconfig.json`; - const typing: File = { - path: `${project}/typings/xterm.d.ts`, - content: "export const typing = 10;" - }; - - const allPkgFiles = pkgs(pkgFiles); - const system = createWatchedSystem([libFile, typing, ...flatArray(allPkgFiles)], { currentDirectory: project, environmentVariables }); - writePkgReferences(system); - const { sys, baseline, oldSnap, cb, getPrograms } = createBaseline(system); - const host = createSolutionBuilderWithWatchHostForBaseline(sys, cb); - const solutionBuilder = createSolutionBuilderWithWatch(host, ["tsconfig.json"], { watch: true, verbose: true }); - solutionBuilder.build(); - runWatchBaseline({ - scenario: "watchEnvironment", - subScenario: `same file in multiple projects${singleWatchPerFile ? " with single watcher per file" : ""}`, - commandLineArgs: ["--b", "--w"], - sys, - baseline, - oldSnap, - getPrograms, - changes: [ - { - caption: "modify typing file", - change: sys => sys.writeFile(typing.path, `${typing.content}export const typing1 = 10;`), - timeouts: sys => { - sys.checkTimeoutQueueLengthAndRun(1); - checkSingleTimeoutQueueLengthAndRunAndVerifyNoTimeout(sys); - } - }, - { - // Make change - caption: "change pkg references", - change: sys => { - maxPkgs--; - writePkgReferences(sys); - }, - timeouts: checkSingleTimeoutQueueLengthAndRun, - }, - { - caption: "modify typing file", - change: sys => sys.writeFile(typing.path, typing.content), - timeouts: sys => { - sys.checkTimeoutQueueLengthAndRun(1); - checkSingleTimeoutQueueLengthAndRunAndVerifyNoTimeout(sys); - } - }, - { - // Make change to remove all watches - caption: "change pkg references to remove all watches", - change: sys => { - maxPkgs = 0; - writePkgReferences(sys); - }, - timeouts: checkSingleTimeoutQueueLengthAndRun, + const allPkgFiles = pkgs(pkgFiles); + const system = createWatchedSystem([libFile, typing, ...flatArray(allPkgFiles)], { currentDirectory: project }); + writePkgReferences(system); + const { sys, baseline, oldSnap, cb, getPrograms } = createBaseline(system); + const host = createSolutionBuilderWithWatchHostForBaseline(sys, cb); + const solutionBuilder = createSolutionBuilderWithWatch(host, ["tsconfig.json"], { watch: true, verbose: true }); + solutionBuilder.build(); + runWatchBaseline({ + scenario: "watchEnvironment", + subScenario: `same file in multiple projects with single watcher per file`, + commandLineArgs: ["--b", "--w"], + sys, + baseline, + oldSnap, + getPrograms, + changes: [ + { + caption: "modify typing file", + change: sys => sys.writeFile(typing.path, `${typing.content}export const typing1 = 10;`), + timeouts: sys => { + sys.checkTimeoutQueueLengthAndRun(1); + checkSingleTimeoutQueueLengthAndRunAndVerifyNoTimeout(sys); + } + }, + { + // Make change + caption: "change pkg references", + change: sys => { + maxPkgs--; + writePkgReferences(sys); }, - { - caption: "modify typing file", - change: sys => sys.writeFile(typing.path, `${typing.content}export const typing1 = 10;`), - timeouts: sys => sys.checkTimeoutQueueLength(0), + timeouts: checkSingleTimeoutQueueLengthAndRun, + }, + { + caption: "modify typing file", + change: sys => sys.writeFile(typing.path, typing.content), + timeouts: sys => { + sys.checkTimeoutQueueLengthAndRun(1); + checkSingleTimeoutQueueLengthAndRunAndVerifyNoTimeout(sys); + } + }, + { + // Make change to remove all watches + caption: "change pkg references to remove all watches", + change: sys => { + maxPkgs = 0; + writePkgReferences(sys); }, - ], - watchOrSolution: solutionBuilder - }); + timeouts: checkSingleTimeoutQueueLengthAndRun, + }, + { + caption: "modify typing file", + change: sys => sys.writeFile(typing.path, `${typing.content}export const typing1 = 10;`), + timeouts: sys => sys.checkTimeoutQueueLength(0), + }, + ], + watchOrSolution: solutionBuilder + }); - function flatArray(arr: T[][]): readonly T[] { - return flatMap(arr, identity); + function flatArray(arr: T[][]): readonly T[] { + return flatMap(arr, identity); + } + function pkgs(cb: (index: number) => T): T[] { + const result: T[] = []; + for (let index = 0; index < maxPkgs; index++) { + result.push(cb(index)); } - function pkgs(cb: (index: number) => T): T[] { - const result: T[] = []; - for (let index = 0; index < maxPkgs; index++) { - result.push(cb(index)); + return result; + } + function createPkgReference(index: number) { + return { path: `./pkg${index}` }; + } + function pkgFiles(index: number): File[] { + return [ + { + path: `${project}/pkg${index}/index.ts`, + content: `export const pkg${index} = ${index};` + }, + { + path: `${project}/pkg${index}/tsconfig.json`, + content: JSON.stringify({ + complerOptions: { composite: true }, + include: [ + "**/*.ts", + "../typings/xterm.d.ts" + ] + }) } - return result; - } - function createPkgReference(index: number) { - return { path: `./pkg${index}` }; - } - function pkgFiles(index: number): File[] { - return [ - { - path: `${project}/pkg${index}/index.ts`, - content: `export const pkg${index} = ${index};` - }, - { - path: `${project}/pkg${index}/tsconfig.json`, - content: JSON.stringify({ - complerOptions: { composite: true }, - include: [ - "**/*.ts", - "../typings/xterm.d.ts" - ] - }) - } - ]; - } - function writePkgReferences(system: TestFSWithWatch.TestServerHost) { - system.writeFile(configPath, JSON.stringify({ - files: [], - include: [], - references: pkgs(createPkgReference) - })); - } - }); - } + ]; + } + function writePkgReferences(system: TestFSWithWatch.TestServerHost) { + system.writeFile(configPath, JSON.stringify({ + files: [], + include: [], + references: pkgs(createPkgReference) + })); + } + }); }); } diff --git a/src/testRunner/unittests/tsserver/watchEnvironment.ts b/src/testRunner/unittests/tsserver/watchEnvironment.ts index c90084481347e..22fb171b25b1e 100644 --- a/src/testRunner/unittests/tsserver/watchEnvironment.ts +++ b/src/testRunner/unittests/tsserver/watchEnvironment.ts @@ -499,33 +499,25 @@ namespace ts.projectSystem { }); describe("unittests:: tsserver:: watchEnvironment:: watchFile is single watcher per file", () => { - function verifyWatchFile(scenario: string, environmentVariables?: ESMap) { - it(scenario, () => { - const config: File = { - path: `${tscWatch.projectRoot}/tsconfig.json`, - content: JSON.stringify({ - compilerOptions: { - composite: true, - resolveJsonModule: true, - }, - }) - }; - const index: File = { - path: `${tscWatch.projectRoot}/index.ts`, - content: `import * as tsconfig from "./tsconfig.json";` - }; - const host = createServerHost([config, index, libFile], { environmentVariables }); - const session = createSession(host, { logger: createLoggerWithInMemoryLogs() }); - openFilesForSession([index], session); - host.serializeWatches().forEach(b => session.logger.info(b)); - baselineTsserverLogs("watchEnvironment", scenario, session); - }); - } - - verifyWatchFile("when watchFile can create multiple watchers per file"); - verifyWatchFile( - "when watchFile is single watcher per file", - arrayToMap(["TSC_WATCHFILE"], identity, () => TestFSWithWatch.Tsc_WatchFile.SingleFileWatcherPerName) - ); + it("when watchFile is single watcher per file", () => { + const config: File = { + path: `${tscWatch.projectRoot}/tsconfig.json`, + content: JSON.stringify({ + compilerOptions: { + composite: true, + resolveJsonModule: true, + }, + }) + }; + const index: File = { + path: `${tscWatch.projectRoot}/index.ts`, + content: `import * as tsconfig from "./tsconfig.json";` + }; + const host = createServerHost([config, index, libFile]); + const session = createSession(host, { logger: createLoggerWithInMemoryLogs() }); + openFilesForSession([index], session); + host.serializeWatches().forEach(b => session.logger.info(b)); + baselineTsserverLogs("watchEnvironment", "when watchFile is single watcher per file", session); + }); }); } diff --git a/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects.js b/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects.js deleted file mode 100644 index b99511351618d..0000000000000 --- a/tests/baselines/reference/tsbuildWatch/watchEnvironment/same-file-in-multiple-projects.js +++ /dev/null @@ -1,555 +0,0 @@ -Input:: -//// [/a/lib/lib.d.ts] -/// -interface Boolean {} -interface Function {} -interface CallableFunction {} -interface NewableFunction {} -interface IArguments {} -interface Number { toExponential: any; } -interface Object {} -interface RegExp {} -interface String { charAt: any; } -interface Array { length: number; [n: number]: T; } - -//// [/user/username/projects/myproject/typings/xterm.d.ts] -export const typing = 10; - -//// [/user/username/projects/myproject/pkg0/index.ts] -export const pkg0 = 0; - -//// [/user/username/projects/myproject/pkg0/tsconfig.json] -{"complerOptions":{"composite":true},"include":["**/*.ts","../typings/xterm.d.ts"]} - -//// [/user/username/projects/myproject/pkg1/index.ts] -export const pkg1 = 1; - -//// [/user/username/projects/myproject/pkg1/tsconfig.json] -{"complerOptions":{"composite":true},"include":["**/*.ts","../typings/xterm.d.ts"]} - -//// [/user/username/projects/myproject/pkg2/index.ts] -export const pkg2 = 2; - -//// [/user/username/projects/myproject/pkg2/tsconfig.json] -{"complerOptions":{"composite":true},"include":["**/*.ts","../typings/xterm.d.ts"]} - -//// [/user/username/projects/myproject/pkg3/index.ts] -export const pkg3 = 3; - -//// [/user/username/projects/myproject/pkg3/tsconfig.json] -{"complerOptions":{"composite":true},"include":["**/*.ts","../typings/xterm.d.ts"]} - -//// [/user/username/projects/myproject/tsconfig.json] -{"files":[],"include":[],"references":[{"path":"./pkg0"},{"path":"./pkg1"},{"path":"./pkg2"},{"path":"./pkg3"}]} - - -/a/lib/tsc.js --b --w -Output:: ->> Screen clear -[12:00:47 AM] Starting compilation in watch mode... - -[12:00:48 AM] Projects in this build: - * pkg0/tsconfig.json - * pkg1/tsconfig.json - * pkg2/tsconfig.json - * pkg3/tsconfig.json - * tsconfig.json - -[12:00:49 AM] Project 'pkg0/tsconfig.json' is out of date because output file 'pkg0/index.js' does not exist - -[12:00:50 AM] Building project '/user/username/projects/myproject/pkg0/tsconfig.json'... - -[12:00:54 AM] Project 'pkg1/tsconfig.json' is out of date because output file 'pkg1/index.js' does not exist - -[12:00:55 AM] Building project '/user/username/projects/myproject/pkg1/tsconfig.json'... - -[12:00:59 AM] Project 'pkg2/tsconfig.json' is out of date because output file 'pkg2/index.js' does not exist - -[12:01:00 AM] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'... - -[12:01:04 AM] Project 'pkg3/tsconfig.json' is out of date because output file 'pkg3/index.js' does not exist - -[12:01:05 AM] Building project '/user/username/projects/myproject/pkg3/tsconfig.json'... - -[12:01:09 AM] Found 0 errors. Watching for file changes. - - - -Program root files: ["/user/username/projects/myproject/pkg0/index.ts","/user/username/projects/myproject/typings/xterm.d.ts"] -Program options: {"watch":true,"configFilePath":"/user/username/projects/myproject/pkg0/tsconfig.json"} -Program structureReused: Not -Program files:: -/a/lib/lib.d.ts -/user/username/projects/myproject/pkg0/index.ts -/user/username/projects/myproject/typings/xterm.d.ts - -Semantic diagnostics in builder refreshed for:: -/a/lib/lib.d.ts -/user/username/projects/myproject/pkg0/index.ts -/user/username/projects/myproject/typings/xterm.d.ts - -Shape signatures in builder refreshed for:: -/a/lib/lib.d.ts (used version) -/user/username/projects/myproject/pkg0/index.ts (used version) -/user/username/projects/myproject/typings/xterm.d.ts (used version) - -Program root files: ["/user/username/projects/myproject/pkg1/index.ts","/user/username/projects/myproject/typings/xterm.d.ts"] -Program options: {"watch":true,"configFilePath":"/user/username/projects/myproject/pkg1/tsconfig.json"} -Program structureReused: Not -Program files:: -/a/lib/lib.d.ts -/user/username/projects/myproject/pkg1/index.ts -/user/username/projects/myproject/typings/xterm.d.ts - -Semantic diagnostics in builder refreshed for:: -/a/lib/lib.d.ts -/user/username/projects/myproject/pkg1/index.ts -/user/username/projects/myproject/typings/xterm.d.ts - -Shape signatures in builder refreshed for:: -/a/lib/lib.d.ts (used version) -/user/username/projects/myproject/pkg1/index.ts (used version) -/user/username/projects/myproject/typings/xterm.d.ts (used version) - -Program root files: ["/user/username/projects/myproject/pkg2/index.ts","/user/username/projects/myproject/typings/xterm.d.ts"] -Program options: {"watch":true,"configFilePath":"/user/username/projects/myproject/pkg2/tsconfig.json"} -Program structureReused: Not -Program files:: -/a/lib/lib.d.ts -/user/username/projects/myproject/pkg2/index.ts -/user/username/projects/myproject/typings/xterm.d.ts - -Semantic diagnostics in builder refreshed for:: -/a/lib/lib.d.ts -/user/username/projects/myproject/pkg2/index.ts -/user/username/projects/myproject/typings/xterm.d.ts - -Shape signatures in builder refreshed for:: -/a/lib/lib.d.ts (used version) -/user/username/projects/myproject/pkg2/index.ts (used version) -/user/username/projects/myproject/typings/xterm.d.ts (used version) - -Program root files: ["/user/username/projects/myproject/pkg3/index.ts","/user/username/projects/myproject/typings/xterm.d.ts"] -Program options: {"watch":true,"configFilePath":"/user/username/projects/myproject/pkg3/tsconfig.json"} -Program structureReused: Not -Program files:: -/a/lib/lib.d.ts -/user/username/projects/myproject/pkg3/index.ts -/user/username/projects/myproject/typings/xterm.d.ts - -Semantic diagnostics in builder refreshed for:: -/a/lib/lib.d.ts -/user/username/projects/myproject/pkg3/index.ts -/user/username/projects/myproject/typings/xterm.d.ts - -Shape signatures in builder refreshed for:: -/a/lib/lib.d.ts (used version) -/user/username/projects/myproject/pkg3/index.ts (used version) -/user/username/projects/myproject/typings/xterm.d.ts (used version) - -PolledWatches:: - -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/pkg1/index.ts: - {} -/user/username/projects/myproject/pkg2/tsconfig.json: - {} -/user/username/projects/myproject/pkg2/index.ts: - {} -/user/username/projects/myproject/pkg3/tsconfig.json: - {} -/user/username/projects/myproject/pkg3/index.ts: - {} -/user/username/projects/myproject/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/pkg0: - {} -/user/username/projects/myproject/pkg1: - {} -/user/username/projects/myproject/pkg2: - {} -/user/username/projects/myproject/pkg3: - {} - -exitCode:: ExitStatus.undefined - -//// [/user/username/projects/myproject/pkg0/index.js] -"use strict"; -exports.__esModule = true; -exports.pkg0 = void 0; -exports.pkg0 = 0; - - -//// [/user/username/projects/myproject/pkg1/index.js] -"use strict"; -exports.__esModule = true; -exports.pkg1 = void 0; -exports.pkg1 = 1; - - -//// [/user/username/projects/myproject/pkg2/index.js] -"use strict"; -exports.__esModule = true; -exports.pkg2 = void 0; -exports.pkg2 = 2; - - -//// [/user/username/projects/myproject/pkg3/index.js] -"use strict"; -exports.__esModule = true; -exports.pkg3 = void 0; -exports.pkg3 = 3; - - - -Change:: modify typing file - -Input:: -//// [/user/username/projects/myproject/typings/xterm.d.ts] -export const typing = 10;export const typing1 = 10; - - -Output:: ->> Screen clear -[12:01:13 AM] File change detected. Starting incremental compilation... - -[12:01:14 AM] Project 'pkg0/tsconfig.json' is out of date because output 'pkg0/index.js' is older than input 'typings/xterm.d.ts' - -[12:01:15 AM] Building project '/user/username/projects/myproject/pkg0/tsconfig.json'... - -[12:01:16 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg0/tsconfig.json'... - -[12:01:18 AM] Project 'pkg1/tsconfig.json' is out of date because output 'pkg1/index.js' is older than input 'typings/xterm.d.ts' - -[12:01:19 AM] Building project '/user/username/projects/myproject/pkg1/tsconfig.json'... - -[12:01:20 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'... - -[12:01:22 AM] Project 'pkg2/tsconfig.json' is out of date because output 'pkg2/index.js' is older than input 'typings/xterm.d.ts' - -[12:01:23 AM] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'... - -[12:01:24 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'... - -[12:01:26 AM] Project 'pkg3/tsconfig.json' is out of date because output 'pkg3/index.js' is older than input 'typings/xterm.d.ts' - -[12:01:27 AM] Building project '/user/username/projects/myproject/pkg3/tsconfig.json'... - -[12:01:28 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg3/tsconfig.json'... - -[12:01:30 AM] Found 0 errors. Watching for file changes. - - - -Program root files: ["/user/username/projects/myproject/pkg0/index.ts","/user/username/projects/myproject/typings/xterm.d.ts"] -Program options: {"watch":true,"configFilePath":"/user/username/projects/myproject/pkg0/tsconfig.json"} -Program structureReused: Not -Program files:: -/a/lib/lib.d.ts -/user/username/projects/myproject/pkg0/index.ts -/user/username/projects/myproject/typings/xterm.d.ts - -Semantic diagnostics in builder refreshed for:: -/user/username/projects/myproject/typings/xterm.d.ts - -Shape signatures in builder refreshed for:: -/user/username/projects/myproject/typings/xterm.d.ts (used version) - -Program root files: ["/user/username/projects/myproject/pkg1/index.ts","/user/username/projects/myproject/typings/xterm.d.ts"] -Program options: {"watch":true,"configFilePath":"/user/username/projects/myproject/pkg1/tsconfig.json"} -Program structureReused: Not -Program files:: -/a/lib/lib.d.ts -/user/username/projects/myproject/pkg1/index.ts -/user/username/projects/myproject/typings/xterm.d.ts - -Semantic diagnostics in builder refreshed for:: -/user/username/projects/myproject/typings/xterm.d.ts - -Shape signatures in builder refreshed for:: -/user/username/projects/myproject/typings/xterm.d.ts (used version) - -Program root files: ["/user/username/projects/myproject/pkg2/index.ts","/user/username/projects/myproject/typings/xterm.d.ts"] -Program options: {"watch":true,"configFilePath":"/user/username/projects/myproject/pkg2/tsconfig.json"} -Program structureReused: Not -Program files:: -/a/lib/lib.d.ts -/user/username/projects/myproject/pkg2/index.ts -/user/username/projects/myproject/typings/xterm.d.ts - -Semantic diagnostics in builder refreshed for:: -/user/username/projects/myproject/typings/xterm.d.ts - -Shape signatures in builder refreshed for:: -/user/username/projects/myproject/typings/xterm.d.ts (used version) - -Program root files: ["/user/username/projects/myproject/pkg3/index.ts","/user/username/projects/myproject/typings/xterm.d.ts"] -Program options: {"watch":true,"configFilePath":"/user/username/projects/myproject/pkg3/tsconfig.json"} -Program structureReused: Not -Program files:: -/a/lib/lib.d.ts -/user/username/projects/myproject/pkg3/index.ts -/user/username/projects/myproject/typings/xterm.d.ts - -Semantic diagnostics in builder refreshed for:: -/user/username/projects/myproject/typings/xterm.d.ts - -Shape signatures in builder refreshed for:: -/user/username/projects/myproject/typings/xterm.d.ts (used version) - -PolledWatches:: - -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/pkg1/index.ts: - {} -/user/username/projects/myproject/pkg2/tsconfig.json: - {} -/user/username/projects/myproject/pkg2/index.ts: - {} -/user/username/projects/myproject/pkg3/tsconfig.json: - {} -/user/username/projects/myproject/pkg3/index.ts: - {} -/user/username/projects/myproject/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/pkg0: - {} -/user/username/projects/myproject/pkg1: - {} -/user/username/projects/myproject/pkg2: - {} -/user/username/projects/myproject/pkg3: - {} - -exitCode:: ExitStatus.undefined - -//// [/user/username/projects/myproject/pkg0/index.js] file changed its modified time -//// [/user/username/projects/myproject/pkg1/index.js] file changed its modified time -//// [/user/username/projects/myproject/pkg2/index.js] file changed its modified time -//// [/user/username/projects/myproject/pkg3/index.js] file changed its modified time - -Change:: change pkg references - -Input:: -//// [/user/username/projects/myproject/tsconfig.json] -{"files":[],"include":[],"references":[{"path":"./pkg0"},{"path":"./pkg1"},{"path":"./pkg2"}]} - - -Output:: ->> Screen clear -[12:01:34 AM] File change detected. Starting incremental compilation... - -[12:01:35 AM] Found 0 errors. Watching for file changes. - - - -PolledWatches:: - -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/pkg1/index.ts: - {} -/user/username/projects/myproject/pkg2/tsconfig.json: - {} -/user/username/projects/myproject/pkg2/index.ts: - {} -/user/username/projects/myproject/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/pkg0: - {} -/user/username/projects/myproject/pkg1: - {} -/user/username/projects/myproject/pkg2: - {} - -exitCode:: ExitStatus.undefined - - -Change:: modify typing file - -Input:: -//// [/user/username/projects/myproject/typings/xterm.d.ts] -export const typing = 10; - - -Output:: ->> Screen clear -[12:01:39 AM] File change detected. Starting incremental compilation... - -[12:01:40 AM] Project 'pkg0/tsconfig.json' is out of date because output 'pkg0/index.js' is older than input 'typings/xterm.d.ts' - -[12:01:41 AM] Building project '/user/username/projects/myproject/pkg0/tsconfig.json'... - -[12:01:42 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg0/tsconfig.json'... - -[12:01:44 AM] Project 'pkg1/tsconfig.json' is out of date because output 'pkg1/index.js' is older than input 'typings/xterm.d.ts' - -[12:01:45 AM] Building project '/user/username/projects/myproject/pkg1/tsconfig.json'... - -[12:01:46 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'... - -[12:01:48 AM] Project 'pkg2/tsconfig.json' is out of date because output 'pkg2/index.js' is older than input 'typings/xterm.d.ts' - -[12:01:49 AM] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'... - -[12:01:50 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'... - -[12:01:52 AM] Found 0 errors. Watching for file changes. - - - -Program root files: ["/user/username/projects/myproject/pkg0/index.ts","/user/username/projects/myproject/typings/xterm.d.ts"] -Program options: {"watch":true,"configFilePath":"/user/username/projects/myproject/pkg0/tsconfig.json"} -Program structureReused: Not -Program files:: -/a/lib/lib.d.ts -/user/username/projects/myproject/pkg0/index.ts -/user/username/projects/myproject/typings/xterm.d.ts - -Semantic diagnostics in builder refreshed for:: -/user/username/projects/myproject/typings/xterm.d.ts - -Shape signatures in builder refreshed for:: -/user/username/projects/myproject/typings/xterm.d.ts (used version) - -Program root files: ["/user/username/projects/myproject/pkg1/index.ts","/user/username/projects/myproject/typings/xterm.d.ts"] -Program options: {"watch":true,"configFilePath":"/user/username/projects/myproject/pkg1/tsconfig.json"} -Program structureReused: Not -Program files:: -/a/lib/lib.d.ts -/user/username/projects/myproject/pkg1/index.ts -/user/username/projects/myproject/typings/xterm.d.ts - -Semantic diagnostics in builder refreshed for:: -/user/username/projects/myproject/typings/xterm.d.ts - -Shape signatures in builder refreshed for:: -/user/username/projects/myproject/typings/xterm.d.ts (used version) - -Program root files: ["/user/username/projects/myproject/pkg2/index.ts","/user/username/projects/myproject/typings/xterm.d.ts"] -Program options: {"watch":true,"configFilePath":"/user/username/projects/myproject/pkg2/tsconfig.json"} -Program structureReused: Not -Program files:: -/a/lib/lib.d.ts -/user/username/projects/myproject/pkg2/index.ts -/user/username/projects/myproject/typings/xterm.d.ts - -Semantic diagnostics in builder refreshed for:: -/user/username/projects/myproject/typings/xterm.d.ts - -Shape signatures in builder refreshed for:: -/user/username/projects/myproject/typings/xterm.d.ts (used version) - -PolledWatches:: - -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/pkg1/index.ts: - {} -/user/username/projects/myproject/pkg2/tsconfig.json: - {} -/user/username/projects/myproject/pkg2/index.ts: - {} -/user/username/projects/myproject/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/pkg0: - {} -/user/username/projects/myproject/pkg1: - {} -/user/username/projects/myproject/pkg2: - {} - -exitCode:: ExitStatus.undefined - -//// [/user/username/projects/myproject/pkg0/index.js] file changed its modified time -//// [/user/username/projects/myproject/pkg1/index.js] file changed its modified time -//// [/user/username/projects/myproject/pkg2/index.js] file changed its modified time - -Change:: change pkg references to remove all watches - -Input:: -//// [/user/username/projects/myproject/tsconfig.json] -{"files":[],"include":[],"references":[]} - - -Output:: ->> Screen clear -[12:01:57 AM] File change detected. Starting incremental compilation... - -tsconfig.json:1:10 - error TS18002: The 'files' list in config file '/user/username/projects/myproject/tsconfig.json' is empty. - -1 {"files":[],"include":[],"references":[]} -   ~~ - -[12:01:58 AM] Found 1 error. Watching for file changes. - - - -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} - -FsWatchesRecursive:: - -exitCode:: ExitStatus.undefined - - -Change:: modify typing file - -Input:: -//// [/user/username/projects/myproject/typings/xterm.d.ts] -export const typing = 10;export const typing1 = 10; - - -Output:: - -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} - -FsWatchesRecursive:: - -exitCode:: ExitStatus.undefined - diff --git a/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-can-create-multiple-watchers-per-file.js b/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-can-create-multiple-watchers-per-file.js deleted file mode 100644 index 73e3589eb9834..0000000000000 --- a/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-can-create-multiple-watchers-per-file.js +++ /dev/null @@ -1,72 +0,0 @@ -Provided types map file "/a/lib/typesMap.json" doesn't exist -request:{"seq":0,"type":"request","command":"open","arguments":{"file":"/user/username/projects/myproject/index.ts"}} -Search path: /user/username/projects/myproject -For info: /user/username/projects/myproject/index.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Creating configuration project /user/username/projects/myproject/tsconfig.json -FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Config: /user/username/projects/myproject/tsconfig.json : { - "rootNames": [ - "/user/username/projects/myproject/index.ts" - ], - "options": { - "composite": true, - "resolveJsonModule": true, - "configFilePath": "/user/username/projects/myproject/tsconfig.json" - } -} -DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 500 undefined WatchType: Closed Script info -FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Project '/user/username/projects/myproject/tsconfig.json' (Configured) - Files (3) - /a/lib/lib.d.ts - /user/username/projects/myproject/tsconfig.json - /user/username/projects/myproject/index.ts - - - ../../../../a/lib/lib.d.ts - Default library for target 'es3' - tsconfig.json - Imported via "./tsconfig.json" from file 'index.ts' - index.ts - Matched by default include pattern '**/*' - ------------------------------------------------ -Search path: /user/username/projects/myproject -For info: /user/username/projects/myproject/tsconfig.json :: No config files found. -Project '/user/username/projects/myproject/tsconfig.json' (Configured) - Files (3) - ------------------------------------------------ -Open files: - FileName: /user/username/projects/myproject/index.ts ProjectRootPath: undefined - Projects: /user/username/projects/myproject/tsconfig.json -response:{"responseRequired":false} -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} - {} -/user/username/projects/myproject: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} From 61a99bf49426ddd6c6e883a8856f161afa47b4a3 Mon Sep 17 00:00:00 2001 From: Sheetal Nandi Date: Mon, 15 Aug 2022 16:07:41 -0700 Subject: [PATCH 6/8] Make single per directory native watchers now that we are using it as default --- src/compiler/sys.ts | 103 +++++++++++------- ...programs-are-not-affected-by-each-other.js | 3 - ...-different-folders-with-no-files-clause.js | 15 --- ...es-field-when-solution-is-already-built.js | 1 - ...Symlinks-when-solution-is-already-built.js | 1 - ...n-has-types-field-with-preserveSymlinks.js | 1 - ...-package-when-solution-is-already-built.js | 1 - ...Symlinks-when-solution-is-already-built.js | 1 - ...th-scoped-package-with-preserveSymlinks.js | 1 - ...son-has-types-field-with-scoped-package.js | 1 - .../when-packageJson-has-types-field.js | 1 - ...ubFolder-when-solution-is-already-built.js | 1 - ...Symlinks-when-solution-is-already-built.js | 1 - ...le-from-subFolder-with-preserveSymlinks.js | 1 - ...-package-when-solution-is-already-built.js | 1 - ...Symlinks-when-solution-is-already-built.js | 1 - ...th-scoped-package-with-preserveSymlinks.js | 1 - ...file-from-subFolder-with-scoped-package.js | 1 - .../when-referencing-file-from-subFolder.js | 1 - ...en-watchFile-is-single-watcher-per-file.js | 1 - ...excludeDirectories-option-in-configFile.js | 1 - ...ludeDirectories-option-in-configuration.js | 1 - 22 files changed, 61 insertions(+), 79 deletions(-) diff --git a/src/compiler/sys.ts b/src/compiler/sys.ts index c0d29c925fc22..f93c36b0ac769 100644 --- a/src/compiler/sys.ts +++ b/src/compiler/sys.ts @@ -418,50 +418,41 @@ namespace ts { } } - function createSingleFileWatcherPerName( - watchFile: HostWatchFile, - useCaseSensitiveFileNames: boolean - ): HostWatchFile { - interface SingleFileWatcher { - watcher: FileWatcher; - refCount: number; - } - const cache = new Map(); - const callbacksCache = createMultiMap(); + interface SingleFileWatcher{ + watcher: FileWatcher; + callbacks: T[]; + } + function createSingleWatcherPerName( + cache: Map>, + useCaseSensitiveFileNames: boolean, + name: string, + callback: T, + createWatcher: (callback: T) => FileWatcher, + ): FileWatcher { const toCanonicalFileName = createGetCanonicalFileName(useCaseSensitiveFileNames); + const path = toCanonicalFileName(name); + const existing = cache.get(path); + if (existing) { + existing.callbacks.push(callback); + } + else { + cache.set(path, { + watcher: createWatcher(( + // Cant infer types correctly so lets satisfy checker + (param1: any, param2: never, param3: any) => cache.get(path)?.callbacks.slice().forEach(cb => cb(param1, param2, param3)) + ) as T), + callbacks: [callback] + }); + } - return (fileName, callback, pollingInterval, options) => { - const path = toCanonicalFileName(fileName); - const existing = cache.get(path); - if (existing) { - existing.refCount++; - } - else { - cache.set(path, { - watcher: watchFile( - fileName, - (fileName, eventKind, modifiedTime) => forEach( - callbacksCache.get(path), - cb => cb(fileName, eventKind, modifiedTime) - ), - pollingInterval, - options - ), - refCount: 1 - }); + return { + close: () => { + const watcher = cache.get(path); + if (!watcher) return; + if (!orderedRemoveItem(watcher.callbacks, callback) || watcher.callbacks.length) return; + cache.delete(path); + closeFileWatcherOf(watcher); } - callbacksCache.add(path, callback); - - return { - close: () => { - const watcher = Debug.checkDefined(cache.get(path)); - callbacksCache.remove(path, callback); - watcher.refCount--; - if (watcher.refCount) return; - cache.delete(path); - closeFileWatcherOf(watcher); - } - }; }; } @@ -886,7 +877,9 @@ namespace ts { inodeWatching, sysLog, }: CreateSystemWatchFunctions): { watchFile: HostWatchFile; watchDirectory: HostWatchDirectory; } { - const pollingWatchFile = createSingleFileWatcherPerName(pollingWatchFileWorker, useCaseSensitiveFileNames); + const pollingWatches = new Map>(); + const fsWatches = new Map>(); + const fsWatchesRecursive = new Map>(); let dynamicPollingWatchFile: HostWatchFile | undefined; let fixedChunkSizePollingWatchFile: HostWatchFile | undefined; let nonPollingWatchFile: HostWatchFile | undefined; @@ -1064,6 +1057,15 @@ namespace ts { } } + function pollingWatchFile(fileName: string, callback: FileWatcherCallback, pollingInterval: PollingInterval, options: WatchOptions | undefined) { + return createSingleWatcherPerName( + pollingWatches, + useCaseSensitiveFileNames, + fileName, + callback, + cb => pollingWatchFileWorker(fileName, cb, pollingInterval, options), + ); + } function fsWatch( fileOrDirectory: string, entryKind: FileSystemEntryKind, @@ -1071,6 +1073,23 @@ namespace ts { recursive: boolean, fallbackPollingInterval: PollingInterval, fallbackOptions: WatchOptions | undefined + ): FileWatcher { + return createSingleWatcherPerName( + recursive ? fsWatchesRecursive : fsWatches, + useCaseSensitiveFileNames, + fileOrDirectory, + callback, + cb => fsWatchHandlingPresence(fileOrDirectory, entryKind, cb, recursive, fallbackPollingInterval, fallbackOptions), + ); + } + + function fsWatchHandlingPresence( + fileOrDirectory: string, + entryKind: FileSystemEntryKind, + callback: FsWatchCallback, + recursive: boolean, + fallbackPollingInterval: PollingInterval, + fallbackOptions: WatchOptions | undefined ): FileWatcher { let lastDirectoryPartWithDirectorySeparator: string | undefined; let lastDirectoryPart: string | undefined; 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 067032d0c9b5d..c97ab6a796e13 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 @@ -115,13 +115,10 @@ PolledWatches:: FsWatches:: /a/c/f2.ts: {} - {} /a/d/f3.ts: {} - {} /a/lib/lib.d.ts: {} - {} /a/b/f1.ts: {} 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 5cbbbcc65c637..c8ef81652edae 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 @@ -252,10 +252,8 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/b: {} - {} /user/username/projects/transitivereferences/a: {} - {} /user/username/projects/transitivereferences/refs: {} /user/username/projects/transitivereferences/c: @@ -419,10 +417,8 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/b: {} - {} /user/username/projects/transitivereferences/a: {} - {} /user/username/projects/transitivereferences/refs: {} /user/username/projects/transitivereferences/c: @@ -519,10 +515,8 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/b: {} - {} /user/username/projects/transitivereferences/a: {} - {} /user/username/projects/transitivereferences/c: {} /user/username/projects/transitivereferences/nrefs: @@ -614,10 +608,8 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/b: {} - {} /user/username/projects/transitivereferences/a: {} - {} /user/username/projects/transitivereferences/c: {} /user/username/projects/transitivereferences/refs: @@ -709,7 +701,6 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/b: {} - {} /user/username/projects/transitivereferences/a: {} /user/username/projects/transitivereferences/c: @@ -795,7 +786,6 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/b: {} - {} /user/username/projects/transitivereferences/a: {} /user/username/projects/transitivereferences/c: @@ -976,14 +966,12 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/b: {} - {} /user/username/projects/transitivereferences/c: {} /user/username/projects/transitivereferences/refs: {} /user/username/projects/transitivereferences/a: {} - {} exitCode:: ExitStatus.undefined @@ -1074,7 +1062,6 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/transitivereferences/b: {} - {} /user/username/projects/transitivereferences/c: {} /user/username/projects/transitivereferences/refs: @@ -1170,14 +1157,12 @@ FsWatches:: FsWatchesRecursive:: /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/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 4f0dc0b978318..055f285a45241 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 @@ -239,7 +239,6 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/packages/a/src: {} - {} /user/username/projects/myproject/node_modules: {} 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 f85682c6094e7..6f4bfcce31681 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 @@ -239,7 +239,6 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/packages/a/src: {} - {} /user/username/projects/myproject/node_modules: {} 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 3600bc78a8412..06a94a6c1588e 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 @@ -99,7 +99,6 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/packages/a/src: {} - {} /user/username/projects/myproject/node_modules: {} 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 f13762adf65f9..7eb45f23c6e30 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 @@ -239,7 +239,6 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/packages/a/src: {} - {} /user/username/projects/myproject/node_modules: {} 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 36c6d14913691..c44c6c7972489 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 @@ -239,7 +239,6 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/packages/a/src: {} - {} /user/username/projects/myproject/node_modules: {} 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 add8ceb3ca115..74f0e108b4277 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 @@ -99,7 +99,6 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/packages/a/src: {} - {} /user/username/projects/myproject/node_modules: {} 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 944c2c7cf7abf..4d423c22a3301 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 @@ -99,7 +99,6 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/packages/a/src: {} - {} /user/username/projects/myproject/node_modules: {} 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 d2c9dfabb5d9a..30ad3fb28c327 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 @@ -99,7 +99,6 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/packages/a/src: {} - {} /user/username/projects/myproject/node_modules: {} 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 cafc3a4b25dd1..46a7cd0107f3f 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 @@ -239,7 +239,6 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/packages/a/src: {} - {} /user/username/projects/myproject/node_modules: {} 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 244186f608bfe..2fdfabe13d009 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 @@ -239,7 +239,6 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/packages/a/src: {} - {} /user/username/projects/myproject/node_modules: {} 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 1e095a6422601..b8558128b3de3 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 @@ -99,7 +99,6 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/packages/a/src: {} - {} /user/username/projects/myproject/node_modules: {} 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 6eb9427b18672..10701b2b8f438 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 @@ -239,7 +239,6 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/packages/a/src: {} - {} /user/username/projects/myproject/node_modules: {} 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 86ed01dd54b44..3fc742a1ab1fb 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 @@ -239,7 +239,6 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/packages/a/src: {} - {} /user/username/projects/myproject/node_modules: {} 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 9034d6d2b0042..a09c00d8ebc20 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 @@ -99,7 +99,6 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/packages/a/src: {} - {} /user/username/projects/myproject/node_modules: {} 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 5fb8af5866e06..5e15028b53823 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 @@ -99,7 +99,6 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/packages/a/src: {} - {} /user/username/projects/myproject/node_modules: {} 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 c3ce3e110c74f..1f6d97c7aac94 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 @@ -99,7 +99,6 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/packages/a/src: {} - {} /user/username/projects/myproject/node_modules: {} 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 73e3589eb9834..cf4e610b0fe03 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 @@ -61,7 +61,6 @@ PolledWatches:: FsWatches:: /user/username/projects/myproject/tsconfig.json: {} - {} /user/username/projects/myproject: {} /a/lib/lib.d.ts: 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 22545a39f6506..a4b9fda173956 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 @@ -66,6 +66,5 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: {} - {} /user/username/projects/myproject/node_modules: {} 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 159474f3382c8..a7b1cd0d4e207 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 @@ -66,4 +66,3 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject/src: {} - {} From 4c3a17f595cd7824cbcb6578d80e8a36f58994a9 Mon Sep 17 00:00:00 2001 From: Sheetal Nandi Date: Tue, 23 Aug 2022 11:43:06 -0700 Subject: [PATCH 7/8] Rename --- src/compiler/sys.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/sys.ts b/src/compiler/sys.ts index f93c36b0ac769..d55a31549b7e6 100644 --- a/src/compiler/sys.ts +++ b/src/compiler/sys.ts @@ -1079,11 +1079,11 @@ namespace ts { useCaseSensitiveFileNames, fileOrDirectory, callback, - cb => fsWatchHandlingPresence(fileOrDirectory, entryKind, cb, recursive, fallbackPollingInterval, fallbackOptions), + cb => fsWatchHandlingExistenceOnHost(fileOrDirectory, entryKind, cb, recursive, fallbackPollingInterval, fallbackOptions), ); } - function fsWatchHandlingPresence( + function fsWatchHandlingExistenceOnHost( fileOrDirectory: string, entryKind: FileSystemEntryKind, callback: FsWatchCallback, From b9fc81cf618c53b3ccfd88f93c3dd7fcc5b87d57 Mon Sep 17 00:00:00 2001 From: Sheetal Nandi Date: Tue, 23 Aug 2022 15:54:30 -0700 Subject: [PATCH 8/8] Comment --- src/compiler/sys.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/compiler/sys.ts b/src/compiler/sys.ts index d55a31549b7e6..bcc37fcd5a857 100644 --- a/src/compiler/sys.ts +++ b/src/compiler/sys.ts @@ -448,6 +448,8 @@ namespace ts { return { close: () => { const watcher = cache.get(path); + // Watcher is not expected to be undefined, but if it is normally its because + // exception was thrown somewhere else and watch state is not what it should be if (!watcher) return; if (!orderedRemoveItem(watcher.callbacks, callback) || watcher.callbacks.length) return; cache.delete(path);